From 05ee952d1029f65b03412e2284f58d2d82184732 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 16 May 2007 01:49:33 +0000 Subject: [PATCH] r22926: Don't use <=0, use < 0 to allow keepalives to propagate up. Jeremy. (This used to be commit bf0313629e16c27461b028d3ea49185e99fc4d9c) --- source3/lib/util_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index d491fe7e4cc..d102e570ab1 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) <= 0) { + if (receive_smb_raw(fd, buffer, timeout, 0) < 0) { return False; } -- 2.11.4.GIT