summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-03-16 22:31:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:57:33 -0500
commit132310b5bf173d398243991bce5b1fb4c5dc5f96 (patch)
treee34f839f00e29c484d77b31237f03e1acd8a1fe0 /source4
parentb785a7c40c185512207ef8da837a766933073032 (diff)
downloadsamba-132310b5bf173d398243991bce5b1fb4c5dc5f96.tar.gz
samba-132310b5bf173d398243991bce5b1fb4c5dc5f96.tar.bz2
samba-132310b5bf173d398243991bce5b1fb4c5dc5f96.zip
r14494: Add comments to clarify that we deliberatly fall though here
Andrew Bartlett (This used to be commit ead4087ac878d2317e5331fc9e12503994195a73)
Diffstat (limited to 'source4')
-rw-r--r--source4/auth/auth_util.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c
index fede2a278a..84dc3b24f7 100644
--- a/source4/auth/auth_util.c
+++ b/source4/auth/auth_util.c
@@ -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;