X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5781cc9dca08c6d780b128a03448ca0fe64831c6..f053f0b49f317d31b337fe8d8b07612671831a52:/uip/burst.c diff --git a/uip/burst.c b/uip/burst.c index b86c722e..a9bb173e 100644 --- a/uip/burst.c +++ b/uip/burst.c @@ -180,7 +180,7 @@ main (int argc, char **argv) } else { if (numburst == 0) { if (!quietsw) - admonish (NULL, "message %d not in digest format", + inform("message %d not in digest format, continuing...", msgnum); } /* this pair of braces was missing before 1999-07-15 */ else @@ -189,7 +189,7 @@ main (int argc, char **argv) } } - free ((char *) smsgs); + free(smsgs); context_replace (pfolder, folder); /* update current folder */ /* @@ -521,6 +521,7 @@ cpybrst (FILE *in, FILE *out, char *ifile, char *ofile, int len, int mime) default: state = S2; + /* FALLTHRU */ case '\n': fputc (c, out); break; @@ -531,6 +532,7 @@ cpybrst (FILE *in, FILE *out, char *ifile, char *ofile, int len, int mime) switch (c) { case '\n': state = S1; + /* FALLTHRU */ default: fputc (c, out); break;