X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5cb3431b8210554b89425d60b3c0aa4f521b7414..c5755ce22669bc863d6319783cc9d5d38a5bdbcc:/uip/send.c diff --git a/uip/send.c b/uip/send.c index 2d162a7a..de94af2d 100644 --- a/uip/send.c +++ b/uip/send.c @@ -243,7 +243,8 @@ main (int argc, char **argv) continue; case DEBUGSW: - debugsw++; /* fall */ + debugsw++; + /* FALLTHRU */ case NFILTSW: case FRMTSW: case NFRMTSW: @@ -283,7 +284,7 @@ main (int argc, char **argv) case SASLMECHSW: if (!(saslmech = *argp) || *saslmech == '-') adios (NULL, "missing argument to %s", argp[-1]); - /* Fall through */ + /* FALLTHRU */ case ALIASW: case FILTSW: @@ -301,14 +302,14 @@ main (int argc, char **argv) continue; case ATTACHSW: - advise(NULL, "The -attach switch is deprecated"); + inform("The -attach switch is deprecated"); continue; case NOATTACHSW: - advise(NULL, "The -noattach switch is deprecated"); + inform("The -noattach switch is deprecated"); continue; case ATTACHFORMATSW: - advise(NULL, "The -attachformat switch is deprecated"); + inform("The -attachformat switch is deprecated"); continue; } } else { @@ -346,7 +347,7 @@ main (int argc, char **argv) showfile (++argp, msgs[0]); break; default: - advise (NULL, "say what?"); + inform("say what?"); break; } } @@ -483,8 +484,10 @@ go_to_it: switch (sendsbr (vec, vecp, program, msgs[msgnum], &st, 1, auth_svc)) { case DONE: done (++status); + /* FALLTHRU */ case NOTOK: - status++; /* fall */ + status++; + /* FALLTHRU */ case OK: break; }