From 3354f2548972d5b667d1cfda24d8b26d7946116e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 4 Feb 2003 10:02:43 +0000 Subject: Actually checking both the account and password tests would be a good idea... Andrew Bartlett (This used to be commit 49640635b15f53be6bb28d3d79255abe10c207dd) --- source3/auth/auth_sam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c index 9650dc0940..06e27f1d48 100644 --- a/source3/auth/auth_sam.c +++ b/source3/auth/auth_sam.c @@ -420,13 +420,13 @@ static NTSTATUS check_sam_security(const struct auth_context *auth_context, nt_status = sam_account_ok(mem_ctx, sampass, user_info); - nt_status = sam_password_ok(auth_context, mem_ctx, sampass, user_info, user_sess_key); - if (!NT_STATUS_IS_OK(nt_status)) { pdb_free_sam(&sampass); return nt_status; } + nt_status = sam_password_ok(auth_context, mem_ctx, sampass, user_info, user_sess_key); + if (!NT_STATUS_IS_OK(nt_status)) { pdb_free_sam(&sampass); return nt_status; -- cgit