diff options
author | Jeremy Allison <jra@samba.org> | 1997-12-20 14:52:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-12-20 14:52:48 +0000 |
commit | 6f562117211a69ddf48d8a7bc59bbf9606c56c6a (patch) | |
tree | c0737336824f17402ef1309bf923b15e2cc46d9e /source3/lib | |
parent | be71d43585cf4b42efff7995dbf061fddd6077f5 (diff) | |
download | samba-6f562117211a69ddf48d8a7bc59bbf9606c56c6a.tar.gz samba-6f562117211a69ddf48d8a7bc59bbf9606c56c6a.tar.xz 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.c | 2 |
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; |