X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/dbdbd49d59ae5c14e66b1c148a63b8abc9d076ab..29a1ada5b960fbf29d52e0f44911370a6c0c7c5f:/uip/mhstore.c diff --git a/uip/mhstore.c b/uip/mhstore.c index e09be9de..6f2fdd39 100644 --- a/uip/mhstore.c +++ b/uip/mhstore.c @@ -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);