diff options
author | Jeremy Allison <jra@samba.org> | 2003-10-17 21:19:15 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-10-17 21:19:15 +0000 |
commit | 8c4e25a331bb9e72374202378340b2acd525adce (patch) | |
tree | eb3b863eb26da7bf5331cd6b8098635fc442e56f | |
parent | 636fe495699bb9e3992dffe5ee20bce219ce8924 (diff) | |
download | samba-8c4e25a331bb9e72374202378340b2acd525adce.tar.gz samba-8c4e25a331bb9e72374202378340b2acd525adce.tar.bz2 samba-8c4e25a331bb9e72374202378340b2acd525adce.zip |
Typo broke win9x logins.
Jeremy.
(This used to be commit 4e00cad645635af66b62c6a5568264a09cf340f3)
-rw-r--r-- | source3/smbd/ipc.c | 2 |
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); |