summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-04-08 02:40:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:00:49 -0500
commit12e8cea33ffdc2384cfa01ec401eb72a7093726c (patch)
treeaaa44ceaf58ecf074531a9bc4021b98830cbce0d
parent8d43646676073283ed393e387ad3b827da85e416 (diff)
downloadsamba-12e8cea33ffdc2384cfa01ec401eb72a7093726c.tar.gz
samba-12e8cea33ffdc2384cfa01ec401eb72a7093726c.tar.bz2
samba-12e8cea33ffdc2384cfa01ec401eb72a7093726c.zip
r14976: another use of the magic comment recognised by the IBM checker for
deliberate fall through in switch (This used to be commit 484cea71100cfeef89c8a5670443734ee14c3b8e)
-rw-r--r--source4/lib/util/util_file.c1
1 files changed, 1 insertions, 0 deletions
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;