From: Günther Deschner Date: Thu, 6 Mar 2008 11:24:37 +0000 (+0100) Subject: Be more verbose why create local token has failed during X-Git-Tag: samba-3.3.0pre1~3423 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18b8c2c19e50aee8fc900c7507244cb95014a4fa;p=thirdparty%2Fsamba.git Be more verbose why create local token has failed during NTLMSSP and Kerberos session setup Guenther --- diff --git a/source/auth/auth_ntlmssp.c b/source/auth/auth_ntlmssp.c index ed66d0db0af..b6c26a1fc8b 100644 --- a/source/auth/auth_ntlmssp.c +++ b/source/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; } diff --git a/source/smbd/sesssetup.c b/source/smbd/sesssetup.c index 9baa02977ad..5578dafd851 100644 --- a/source/smbd/sesssetup.c +++ b/source/smbd/sesssetup.c @@ -539,6 +539,8 @@ static void reply_spnego_kerberos(struct smb_request *req, if ( !server_info->ptok ) { ret = create_local_token( server_info ); if ( !NT_STATUS_IS_OK(ret) ) { + DEBUG(10,("failed to create local token: %s\n", + nt_errstr(ret))); SAFE_FREE(client); data_blob_free(&ap_rep); data_blob_free(&session_key);