Skip to content

Commit

Permalink
s3:modules: Add FALL_THROUGH statements in getdate.c
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
  • Loading branch information
cryptomilk authored and abartlet committed Mar 1, 2018
1 parent f5d69d7 commit 824fa2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source3/modules/getdate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1098,9 +1098,10 @@ yytnamerr (char *yyres, const char *yystr)
goto do_not_strip_quotes;

case '\\':
if (*++yyp != '\\')
if (*++yyp != '\\') {
goto do_not_strip_quotes;
/* Fall through. */
}
FALL_THROUGH;
default:
if (yyres)
yyres[yyn] = *yyp;
Expand Down

0 comments on commit 824fa2c

Please sign in to comment.