s3:lib: Add FALL_THROUGH statements in cbuf.c
authorAndreas Schneider <asn@samba.org>
Wed, 26 Jul 2017 15:25:30 +0000 (17:25 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 1 Mar 2018 03:37:42 +0000 (04:37 +0100)
source3/lib/cbuf.c

index 611aa80609f375d402fa56f0654efb6718573d08..426ecdb5a3beae8d7b8447f24f66d2cf0164043b 100644 (file)
@@ -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++;