1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-30 17:49:30 +03:00

r5455: Remove bogus DEBUG messages (dump for a failure to parse NTLMSSP,

before trying the alternate format).

This only caused confusion and bug reports...

Andrew Bartlett
This commit is contained in:
Andrew Bartlett
2005-02-19 09:27:06 +00:00
committed by Gerald (Jerry) Carter
parent fd947b5ee0
commit 5cb02b569b

View File

@ -393,7 +393,7 @@ static NTSTATUS ntlmssp_server_negotiate(struct ntlmssp_state *ntlmssp_state,
&neg_flags, &neg_flags,
&cliname, &cliname,
&domname)) { &domname)) {
DEBUG(1, ("ntlmssp_server_negotiate: failed to parse NTLMSSP:\n")); DEBUG(1, ("ntlmssp_server_negotiate: failed to parse NTLMSSP Negotiate:\n"));
dump_data(2, (const char *)request.data, request.length); dump_data(2, (const char *)request.data, request.length);
return NT_STATUS_INVALID_PARAMETER; return NT_STATUS_INVALID_PARAMETER;
} }
@ -539,8 +539,6 @@ static NTSTATUS ntlmssp_server_auth(struct ntlmssp_state *ntlmssp_state,
&workstation, &workstation,
&encrypted_session_key, &encrypted_session_key,
&auth_flags)) { &auth_flags)) {
DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP:\n"));
dump_data(2, (const char *)request.data, request.length);
SAFE_FREE(domain); SAFE_FREE(domain);
SAFE_FREE(user); SAFE_FREE(user);
SAFE_FREE(workstation); SAFE_FREE(workstation);
@ -563,7 +561,7 @@ static NTSTATUS ntlmssp_server_auth(struct ntlmssp_state *ntlmssp_state,
&domain, &domain,
&user, &user,
&workstation)) { &workstation)) {
DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP:\n")); DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP (tried both formats):\n"));
dump_data(2, (const char *)request.data, request.length); dump_data(2, (const char *)request.data, request.length);
SAFE_FREE(domain); SAFE_FREE(domain);
SAFE_FREE(user); SAFE_FREE(user);