From 6a2a27076ff298d747038d4feaf288b263ba31f5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Sun, 4 Nov 2007 22:14:19 -0800 Subject: This should really be a cond_set_smb_read_error(). Jeremy. (This used to be commit 5ab76b58c00dde89b56060482f5cdc5d0c6c56cb) --- source3/lib/util_sock.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index ea0bf281ad..d87d954536 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -1276,9 +1276,7 @@ bool receive_smb(int fd, char *buffer, unsigned int timeout) if (!srv_check_sign_mac(buffer, true)) { DEBUG(0, ("receive_smb: SMB Signature verification " "failed on incoming packet!\n")); - if (get_smb_read_error() == SMB_READ_OK) { - smb_read_error = SMB_READ_BAD_SIG; - } + cond_set_smb_read_error(SMB_READ_BAD_SIG); return false; } -- cgit