summaryrefslogtreecommitdiff
path: root/source3
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
commitb227a561f7bae32353dc22aa78acf622f5c7fbe7 (patch)
tree06c2886d718841e0dd37f5909abd6b28c1a5a018 /source3
parente6900132ca7d216662e3ab08ad37a1e34c752cd9 (diff)
downloadsamba-b227a561f7bae32353dc22aa78acf622f5c7fbe7.tar.gz
samba-b227a561f7bae32353dc22aa78acf622f5c7fbe7.tar.bz2
samba-b227a561f7bae32353dc22aa78acf622f5c7fbe7.zip
Typo broke win9x logins.
Jeremy. (This used to be commit a7afbce99830bffb8795e7dc2c80baeeba7dcd0a)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c
index 9bdd02b059..bc828d2e8e 100644
--- a/source3/smbd/ipc.c
+++ b/source3/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);