1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-22 02:50:28 +03:00

s3: Return the correct result from winbindd_dual_auth_passdb

This commit is contained in:
Volker Lendecke 2010-11-27 18:56:41 +01:00 committed by Volker Lendecke
parent 0b877824cb
commit 3b71f5df03

View File

@ -1118,8 +1118,9 @@ static NTSTATUS winbindd_dual_auth_passdb(TALLOC_CTX *mem_ctx,
status = check_sam_security_info3(challenge, talloc_tos(), user_info,
pinfo3);
free_user_info(&user_info);
DEBUG(10, ("Authenticated user %s\\%s successfully\n", domain, user));
return NT_STATUS_OK;
DEBUG(10, ("Authenticaticating user %s\\%s returned %s\n", domain,
user, nt_errstr(status)));
return status;
}
typedef NTSTATUS (*netlogon_fn_t)(struct rpc_pipe_client *cli,