From: Andreas Schneider Date: Wed, 26 Jul 2017 15:29:55 +0000 (+0200) Subject: s4:auth: Add FALL_THROUGH statements in auth_util.c X-Git-Tag: talloc-2.1.12~370 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef3ac405bf436fa6fd7daf20e0c90856dae8237f;p=thirdparty%2Fsamba.git s4:auth: Add FALL_THROUGH statements in auth_util.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source4/auth/ntlm/auth_util.c b/source4/auth/ntlm/auth_util.c index 7feb20b8f62..5084cc4a929 100644 --- a/source4/auth/ntlm/auth_util.c +++ b/source4/auth/ntlm/auth_util.c @@ -62,7 +62,8 @@ NTSTATUS encrypt_user_info(TALLOC_CTX *mem_ctx, struct auth4_context *auth_conte return nt_status; } user_info_in = user_info_temp2; - /* fall through */ + + FALL_THROUGH; } case AUTH_PASSWORD_HASH: { @@ -122,7 +123,8 @@ NTSTATUS encrypt_user_info(TALLOC_CTX *mem_ctx, struct auth4_context *auth_conte } user_info_in = user_info_temp; - /* fall through */ + + FALL_THROUGH; } case AUTH_PASSWORD_RESPONSE: *user_info_encrypted = user_info_in; @@ -160,7 +162,8 @@ NTSTATUS encrypt_user_info(TALLOC_CTX *mem_ctx, struct auth4_context *auth_conte *user_info_temp->password.hash.nt = nt; user_info_in = user_info_temp; - /* fall through */ + + FALL_THROUGH; } case AUTH_PASSWORD_HASH: *user_info_encrypted = user_info_in;