summaryrefslogtreecommitdiff
path: root/source3/auth/auth_ntlmssp.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-03-06 12:24:37 +0100
committerGünther Deschner <gd@samba.org>2008-03-06 12:27:11 +0100
commit23cd8e5ea7f2aac6cfdcb52666ba4e925740f63f (patch)
treef1afd253e2660f9f05a7d3c25d0d17321e9f8c07 /source3/auth/auth_ntlmssp.c
parent7215b1f69aad2f12a8bc1e3647eaf0425d45f63b (diff)
downloadsamba-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/auth_ntlmssp.c')
-rw-r--r--source3/auth/auth_ntlmssp.c3
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;
}