r14494: Add comments to clarify that we deliberatly fall though here
authorAndrew Bartlett <abartlet@samba.org>
Thu, 16 Mar 2006 22:31:01 +0000 (22:31 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:57:33 +0000 (13:57 -0500)
Andrew Bartlett
(This used to be commit ead4087ac878d2317e5331fc9e12503994195a73)

source4/auth/auth_util.c

index fede2a278a721d6d5d71e512b45b621ab9238569..84dc3b24f7b222d9201848b1f3ea0764f0ed30b9 100644 (file)
@@ -28,7 +28,7 @@
 #include "libcli/auth/libcli_auth.h"
 
 /* this default function can be used by mostly all backends
- * which don't want to set a challlenge
+ * which don't want to set a challenge
  */
 NTSTATUS auth_get_challenge_not_implemented(struct auth_method_context *ctx, TALLOC_CTX *mem_ctx, DATA_BLOB *challenge)
 {
@@ -116,6 +116,7 @@ NTSTATUS map_user_info(TALLOC_CTX *mem_ctx,
                                return nt_status;
                        }
                        user_info_in = user_info_temp2;
+                       /* fall though */
                }
                case AUTH_PASSWORD_HASH:
                {
@@ -171,6 +172,7 @@ NTSTATUS map_user_info(TALLOC_CTX *mem_ctx,
                        }
 
                        user_info_in = user_info_temp;
+                       /* fall though */
                }
                case AUTH_PASSWORD_RESPONSE:
                        *user_info_encrypted = user_info_in;
@@ -206,6 +208,7 @@ NTSTATUS map_user_info(TALLOC_CTX *mem_ctx,
                        *user_info_temp->password.hash.nt = nt;
                        
                        user_info_in = user_info_temp;
+                       /* fall though */
                }
                case AUTH_PASSWORD_HASH:
                        *user_info_encrypted = user_info_in;