From 132310b5bf173d398243991bce5b1fb4c5dc5f96 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 16 Mar 2006 22:31:01 +0000 Subject: r14494: Add comments to clarify that we deliberatly fall though here Andrew Bartlett (This used to be commit ead4087ac878d2317e5331fc9e12503994195a73) --- source4/auth/auth_util.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/auth/auth_util.c') 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; -- cgit