summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-07-26 18:25:46 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-03-01 04:37:41 +0100
commita5104e6a396ded1c2f603eff5bf8fc89bfe3bb61 (patch)
tree8da64914ad117821cbf0663998436305b3a63e54 /lib/replace
parent05dae361b388e71701a7c646f2787315e9bd5dfb (diff)
downloadsamba-a5104e6a396ded1c2f603eff5bf8fc89bfe3bb61.tar.gz
lib:replace: Add FALL_THROUGH statements in strptime.c
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/strptime.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/replace/strptime.c b/lib/replace/strptime.c
index 20e5d8c39b6..bbc742277de 100644
--- a/lib/replace/strptime.c
+++ b/lib/replace/strptime.c
@@ -462,7 +462,8 @@ strptime_internal (rp, fmt, tm, decided, era_cnt)
*decided = raw;
}
#endif
- /* Fall through. */
+
+ FALL_THROUGH;
case 'D':
/* Match standard day format. */
if (!recursive (HERE_D_FMT))
@@ -611,7 +612,8 @@ strptime_internal (rp, fmt, tm, decided, era_cnt)
*decided = raw;
}
#endif
- /* Fall through. */
+
+ FALL_THROUGH;
case 'T':
if (!recursive (HERE_T_FMT))
return NULL;