From 12e8cea33ffdc2384cfa01ec401eb72a7093726c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 8 Apr 2006 02:40:15 +0000 Subject: r14976: another use of the magic comment recognised by the IBM checker for deliberate fall through in switch (This used to be commit 484cea71100cfeef89c8a5670443734ee14c3b8e) --- source4/lib/util/util_file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source4/lib/util/util_file.c b/source4/lib/util/util_file.c index b35d267582..3f6a6b3a40 100644 --- a/source4/lib/util/util_file.c +++ b/source4/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; -- cgit