diff options
author | Günther Deschner <gd@samba.org> | 2008-03-06 12:24:37 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-06 12:27:11 +0100 |
commit | 23cd8e5ea7f2aac6cfdcb52666ba4e925740f63f (patch) | |
tree | f1afd253e2660f9f05a7d3c25d0d17321e9f8c07 /source3/auth | |
parent | 7215b1f69aad2f12a8bc1e3647eaf0425d45f63b (diff) | |
download | samba-23cd8e5ea7f2aac6cfdcb52666ba4e925740f63f.tar.gz samba-23cd8e5ea7f2aac6cfdcb52666ba4e925740f63f.tar.bz2 samba-23cd8e5ea7f2aac6cfdcb52666ba4e925740f63f.zip |
Be more verbose why create local token has failed during
NTLMSSP and Kerberos session setup
Guenther
(This used to be commit 18b8c2c19e50aee8fc900c7507244cb95014a4fa)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index ed66d0db0a..b6c26a1fc8 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -127,7 +127,8 @@ static NTSTATUS auth_ntlmssp_check_password(struct ntlmssp_state *ntlmssp_state, nt_status = create_local_token(auth_ntlmssp_state->server_info); if (!NT_STATUS_IS_OK(nt_status)) { - DEBUG(10, ("create_local_token failed\n")); + DEBUG(10, ("create_local_token failed: %s\n", + nt_errstr(nt_status))); return nt_status; } |