summaryrefslogtreecommitdiff
path: root/source/libsmb
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-25 10:29:22 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-25 10:29:22 +0000
commit5562f1865c90e3f52a3178d9d9ded60909bbe5f0 (patch)
tree65f35f0973b5761120a333fd84759be75e8a7715 /source/libsmb
parent8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4 (diff)
downloadsamba-5562f1865c90e3f52a3178d9d9ded60909bbe5f0.tar.gz
Fix debug (thanks metze)
Andrew Bartlett
Diffstat (limited to 'source/libsmb')
-rw-r--r--source/libsmb/ntlmssp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/ntlmssp.c b/source/libsmb/ntlmssp.c
index 0cd1ac33ec2..d54655d17f7 100644
--- a/source/libsmb/ntlmssp.c
+++ b/source/libsmb/ntlmssp.c
@@ -385,7 +385,7 @@ NTSTATUS ntlmssp_server_update(NTLMSSP_STATE *ntlmssp_state,
} else if (ntlmssp_command == NTLMSSP_AUTH) {
return ntlmssp_server_auth(ntlmssp_state, request, reply);
} else {
- DEBUG(1, ("unknown NTLMSSP command %u\n", ntlmssp_command, ntlmssp_state->expected_state));
+ DEBUG(1, ("unknown NTLMSSP command %u, expected %u\n", ntlmssp_command, ntlmssp_state->expected_state));
return NT_STATUS_INVALID_PARAMETER;
}
}