Relayouted all switch statements: case aligns with switch.
[mmh] / sbr / folder_read.c
index c28b430..cdbf344 100644 (file)
@@ -99,31 +99,32 @@ folder_read(char *name)
 
                } else {
                        switch (dp->d_name[0]) {
-                               case '.':
-                               case ',':
+                       case '.':
+                       case ',':
 #ifdef MHE
-                               case '+':
+                       case '+':
 #endif /* MHE */
+                               continue;
+
+                       default:
+                               /*
+                               ** skip any files beginning with
+                               ** backup prefix
+                               */
+                               if (!strncmp(dp->d_name, backup_prefix,
+                                               prefix_len))
                                        continue;
 
-                               default:
-                                       /*
-                                       ** skip any files beginning with
-                                       ** backup prefix
-                                       */
-                                       if (!strncmp(dp->d_name, backup_prefix, prefix_len))
-                                               continue;
-
-                                       /* skip the altmsg link file */
-                                       if (!strcmp(dp->d_name, altmsglink))
-                                               continue;
-
-                                       /*
-                                       ** indicate that there are other
-                                       ** files in folder
-                                       */
-                                       set_other_files(mp);
+                               /* skip the altmsg link file */
+                               if (!strcmp(dp->d_name, altmsglink))
                                        continue;
+
+                               /*
+                               ** indicate that there are other
+                               ** files in folder
+                               */
+                               set_other_files(mp);
+                               continue;
                        }
                }
        }