svn commit: samba r3084 - in branches/SAMBA_4_0/source/smb_server: .

tridge at samba.org tridge at samba.org
Wed Oct 20 11:12:16 GMT 2004


Author: tridge
Date: 2004-10-20 11:11:55 +0000 (Wed, 20 Oct 2004)
New Revision: 3084

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/smb_server&rev=3084&nolog=1

Log:
mincnt and maxcnt were the wrong way around in readbraw server code


Modified:
   branches/SAMBA_4_0/source/smb_server/reply.c


Changeset:
Modified: branches/SAMBA_4_0/source/smb_server/reply.c
===================================================================
--- branches/SAMBA_4_0/source/smb_server/reply.c	2004-10-20 11:10:51 UTC (rev 3083)
+++ branches/SAMBA_4_0/source/smb_server/reply.c	2004-10-20 11:11:55 UTC (rev 3084)
@@ -675,8 +675,8 @@
 
 	io.readbraw.in.fnum    = req_fnum(req, req->in.vwv, VWV(0));
 	io.readbraw.in.offset  = IVAL(req->in.vwv, VWV(1));
-	io.readbraw.in.mincnt  = SVAL(req->in.vwv, VWV(3));
-	io.readbraw.in.maxcnt  = SVAL(req->in.vwv, VWV(4));
+	io.readbraw.in.maxcnt  = SVAL(req->in.vwv, VWV(3));
+	io.readbraw.in.mincnt  = SVAL(req->in.vwv, VWV(4));
 	io.readbraw.in.timeout = IVAL(req->in.vwv, VWV(5));
 
 	/* the 64 bit variant */



More information about the samba-cvs mailing list