summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-12-20 14:52:48 +0000
committerJeremy Allison <jra@samba.org>1997-12-20 14:52:48 +0000
commit6f562117211a69ddf48d8a7bc59bbf9606c56c6a (patch)
treec0737336824f17402ef1309bf923b15e2cc46d9e /source3/lib
parentbe71d43585cf4b42efff7995dbf061fddd6077f5 (diff)
downloadsamba-6f562117211a69ddf48d8a7bc59bbf9606c56c6a.tar.gz
samba-6f562117211a69ddf48d8a7bc59bbf9606c56c6a.tar.bz2
samba-6f562117211a69ddf48d8a7bc59bbf9606c56c6a.zip
Fixed stupid bug in read_smb_len where I was calling itself - now
calling the correct fn. Jeremy. (This used to be commit c62aa0a7600269c2bb13b939857716a6ee0f34c1)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
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;