]> diplodocus.org Git - nmh/commitdiff
flist.c: Use bool instead of int for some of the flags.
authorRalph Corderoy <ralph@inputplus.co.uk>
Sun, 3 Sep 2017 22:37:52 +0000 (23:37 +0100)
committerRalph Corderoy <ralph@inputplus.co.uk>
Sun, 3 Sep 2017 22:37:52 +0000 (23:37 +0100)
uip/flist.c

index 65ddf458168820c164e0fc1f4e49c4dbbb71d320..03fd5c0e219f79156c4be8068193e59aaa1a5cfe 100644 (file)
@@ -73,11 +73,11 @@ static int maxfolders;
 /* info on sequences to search for */
 static svector_t sequencesToDo;
 
-static int all        = FALSE;  /* scan all folders in top level?           */
-static int alphaOrder = FALSE; /* want alphabetical order only             */
-static int recurse    = FALSE; /* show nested folders?                     */
-static int showzero   = TRUE;  /* show folders even if no messages in seq? */
-static int Total      = TRUE;  /* display info on number of messages in    *
+static bool all;                /* scan all folders in top level? */
+static bool alphaOrder;         /* want alphabetical order only */
+static bool recurse;            /* show nested folders? */
+static bool showzero = true;    /* show folders even if no messages in seq? */
+static bool Total = true;       /* display info on number of messages in
                                 * sequence found, and total num messages   */
 
 static char curfolder[BUFSIZ]; /* name of the current folder */