s4:auth: Add FALL_THROUGH statements in auth_util.c
authorAndreas Schneider <asn@samba.org>
Wed, 26 Jul 2017 15:29:55 +0000 (17:29 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 1 Mar 2018 03:37:43 +0000 (04:37 +0100)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/auth/ntlm/auth_util.c

index 7feb20b8f62e8be4a4f1f7618f120e52a39569a6..5084cc4a929b01ad6055ffafe84ebe2f4696eb99 100644 (file)
@@ -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;