X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/bc237bbae1393cacee9d534832a050f1148b0d8b..9322ba2854211794c27fae9468768b80b767c211:/uip/rmf.c diff --git a/uip/rmf.c b/uip/rmf.c index 30f94219..6a86fe6a 100644 --- a/uip/rmf.c +++ b/uip/rmf.c @@ -133,7 +133,8 @@ rmf (char *folder) switch (i = chdir (maildir = m_maildir (folder))) { case OK: if (access (".", W_OK) != NOTOK && access ("..", W_OK) != NOTOK) - break; /* fall otherwise */ + break; + /* FALLTHRU */ case NOTOK: snprintf (cur, sizeof(cur), "atr-%s-%s", @@ -162,7 +163,8 @@ rmf (char *folder) case '.': if (strcmp (dp->d_name, ".") == 0 || strcmp (dp->d_name, "..") == 0) - continue; /* else fall */ + continue; + /* FALLTHRU */ case ',': break;