summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-10-17 21:19:17 +0000
committerJeremy Allison <jra@samba.org>2003-10-17 21:19:17 +0000
commita7afbce99830bffb8795e7dc2c80baeeba7dcd0a (patch)
treedb2ef316310696142da451239597bc196b50a842 /source
parente9fc15d58c52c12438c1f9c69394c11f76ce72d8 (diff)
downloadsamba-a7afbce99830bffb8795e7dc2c80baeeba7dcd0a.tar.gz
Typo broke win9x logins.
Jeremy.
Diffstat (limited to 'source')
-rw-r--r--source/smbd/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c
index 9bdd02b0593..bc828d2e8ef 100644
--- a/source/smbd/ipc.c
+++ b/source/smbd/ipc.c
@@ -405,7 +405,7 @@ int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int
if ((psoff+pscnt < psoff) || (psoff+pscnt < pscnt))
goto bad_param;
if ((smb_base(inbuf)+psoff+pscnt > inbuf + size) ||
- (smb_base(inbuf)+psoff+pscnt < smb_base(inbuf)));
+ (smb_base(inbuf)+psoff+pscnt < smb_base(inbuf)))
goto bad_param;
memcpy(params,smb_base(inbuf)+psoff,pscnt);