From 29b5de26df8e562387540ad89b92fc94912ed8a7 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 13 Oct 2017 11:15:31 +0200 Subject: [PATCH] s3:smbd: Add FALL_THROUGH statements in reply.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- source3/smbd/reply.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 623f83b1250e..881667a6b44a 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -190,16 +190,16 @@ static NTSTATUS check_path_syntax_internal(char *path, switch(siz) { case 5: *d++ = *s++; - /*fall through*/ + FALL_THROUGH; case 4: *d++ = *s++; - /*fall through*/ + FALL_THROUGH; case 3: *d++ = *s++; - /*fall through*/ + FALL_THROUGH; case 2: *d++ = *s++; - /*fall through*/ + FALL_THROUGH; case 1: *d++ = *s++; break; -- 2.34.1