diff options
-rw-r--r-- | source3/lib/util_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 8f32e47bb8..d491fe7e4c 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -738,7 +738,7 @@ ssize_t receive_smb_raw(int fd, char *buffer, unsigned int timeout, size_t maxle BOOL receive_smb(int fd, char *buffer, unsigned int timeout) { - if (!receive_smb_raw(fd, buffer, timeout, 0)) { + if (receive_smb_raw(fd, buffer, timeout, 0) <= 0) { return False; } |