diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-03-27 07:51:31 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-03-27 07:51:31 +0000 |
commit | 6dbd02d056750de48dd09c2a222a36e74079d044 (patch) | |
tree | 6f4c5e9e601548b747a404484a629e5c4a48aa78 | |
parent | e9a7e67e01c115328f95690cbf63ca1ef0b4d408 (diff) | |
download | samba-6dbd02d056750de48dd09c2a222a36e74079d044.tar.gz samba-6dbd02d056750de48dd09c2a222a36e74079d044.tar.bz2 samba-6dbd02d056750de48dd09c2a222a36e74079d044.zip |
Make it clearer that this error refers to the peer, as this code is in both
the client and server.
Andrew Bartlett
(This used to be commit 414d3fdc753b44262e9a281170d1058608d01bdf)
-rw-r--r-- | source3/libsmb/smb_signing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smb_signing.c b/source3/libsmb/smb_signing.c index c71543959d..7a90e645b3 100644 --- a/source3/libsmb/smb_signing.c +++ b/source3/libsmb/smb_signing.c @@ -216,8 +216,8 @@ static BOOL signing_good(char *inbuf, struct smb_sign_info *si, BOOL good, uint3 return True; } /* Non-mandatory signing - just turn off if this is the first bad packet.. */ - DEBUG(5, ("srv_check_incoming_message: signing negotiated but not required and client \ -isn't sending correct signatures. Turning off.\n")); + DEBUG(5, ("srv_check_incoming_message: signing negotiated but not required and peer\n" + "isn't sending correct signatures. Turning off.\n")); si->negotiated_smb_signing = False; si->allow_smb_signing = False; si->doing_signing = False; |