From 6f562117211a69ddf48d8a7bc59bbf9606c56c6a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Sat, 20 Dec 1997 14:52:48 +0000 Subject: Fixed stupid bug in read_smb_len where I was calling itself - now calling the correct fn. Jeremy. (This used to be commit c62aa0a7600269c2bb13b939857716a6ee0f34c1) --- source3/lib/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util.c b/source3/lib/util.c index 409fe7135c..a6b5d980f9 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -2282,7 +2282,7 @@ int read_smb_length(int fd,char *inbuf,int timeout) for(;;) { - len = read_smb_length(fd, inbuf, timeout); + len = read_smb_length_return_keepalive(fd, inbuf, timeout); if(len < 0) return len; -- cgit