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

tridge at samba.org tridge at samba.org
Tue Oct 26 06:19:50 GMT 2004


Author: tridge
Date: 2004-10-26 06:19:50 +0000 (Tue, 26 Oct 2004)
New Revision: 3243

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

Log:
read the high offset count in SMBreadx in the server

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-26 06:18:56 UTC (rev 3242)
+++ branches/SAMBA_4_0/source/smb_server/reply.c	2004-10-26 06:19:50 UTC (rev 3243)
@@ -890,6 +890,7 @@
 	io->readx.in.offset        = IVAL(req->in.vwv, VWV(3));
 	io->readx.in.maxcnt        = SVAL(req->in.vwv, VWV(5));
 	io->readx.in.mincnt        = SVAL(req->in.vwv, VWV(6));
+	io->readx.in.maxcnt       |= IVAL(req->in.vwv, VWV(7)) << 16;
 	io->readx.in.remaining     = SVAL(req->in.vwv, VWV(9));
 	
 	/* the 64 bit variant */



More information about the samba-cvs mailing list