summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-07-26 17:25:30 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-03-01 04:37:42 +0100
commit3f1a4b749d4157d075cd9146ab5d10d5d0e6ceec (patch)
tree415281efac45ff4e09420ac6d727b45dffd61e83 /source3
parent03ed979eb0cfa37fb25cbaacc9e7a6fd871a8ec9 (diff)
downloadsamba-3f1a4b749d4157d075cd9146ab5d10d5d0e6ceec.tar.gz
s3:lib: Add FALL_THROUGH statements in cbuf.c
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/cbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/cbuf.c b/source3/lib/cbuf.c
index 611aa80609f..426ecdb5a3b 100644
--- a/source3/lib/cbuf.c
+++ b/source3/lib/cbuf.c
@@ -278,7 +278,8 @@ int cbuf_print_quoted_string(cbuf* ost, const char* s)
case '\\':
cbuf_putc(ost, '\\');
n++;
- /* no break */
+
+ FALL_THROUGH;
default:
cbuf_putc(ost, *s);
n++;