From: Andrew Tridgell Date: Sat, 8 Apr 2006 02:40:15 +0000 (+0000) Subject: r14976: another use of the magic comment recognised by the IBM checker for X-Git-Tag: samba-misc-tags/initial-v4-0-unstable~4836 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=484cea71100cfeef89c8a5670443734ee14c3b8e r14976: another use of the magic comment recognised by the IBM checker for deliberate fall through in switch --- diff --git a/source/lib/util/util_file.c b/source/lib/util/util_file.c index b35d2675822..3f6a6b3a40a 100644 --- a/source/lib/util/util_file.c +++ b/source/lib/util/util_file.c @@ -82,6 +82,7 @@ _PUBLIC_ char *fgets_slash(char *s2,int maxlen,XFILE *f) case ' ': if (start_of_line) break; + /* fall through */ default: start_of_line = False; s[len++] = c;