]> diplodocus.org Git - nmh/blobdiff - uip/mhstore.c
Merge branch 'master' of git.sv.gnu.org:/srv/git/nmh
[nmh] / uip / mhstore.c
index e09be9def25eebcd4312ad3e84ae4437e0a248bc..6f2fdd39489a731616565cfe2d399c5eb301524b 100644 (file)
@@ -63,8 +63,9 @@ static void pipeser (int);
 int
 main (int argc, char **argv)
 {
+    int msgnum, *icachesw, autosw = 0;
     /* verbosw defaults to 1 for backward compatibility. */
-    int msgnum, *icachesw, autosw = 0, verbosw = 1;
+    bool verbosw = true;
     const char *clobbersw = "always";
     char *cp, *file = NULL, *outfile = NULL, *folder = NULL;
     char *maildir, buf[100], **argp;
@@ -185,10 +186,10 @@ do_cache:
                continue;
 
            case VERBSW:
-               verbosw = 1;
+               verbosw = true;
                continue;
            case NVERBSW:
-               verbosw = 0;
+               verbosw = false;
                continue;
             case CLOBBERSW:
                if (!(cp = *argp++) || *cp == '-')
@@ -313,7 +314,7 @@ do_cache:
     if (!*cts)
        done (1);
 
-    userrs = 1;
+    userrs = true;
     SIGNAL (SIGQUIT, quitser);
     SIGNAL (SIGPIPE, pipeser);