svn commit: samba r16113 - in trunk/source/smbd: .

jra at samba.org jra at samba.org
Fri Jun 9 01:37:01 GMT 2006


Author: jra
Date: 2006-06-09 01:37:00 +0000 (Fri, 09 Jun 2006)
New Revision: 16113

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16113

Log:
Added Volker's fix for extra odd byte at the end
of UNIX_BASIC infolevel. Checked client implementations
(cifsfs and libsmb) and they ignore it. Thanks Volker.
Jeremy.

Modified:
   trunk/source/smbd/trans2.c


Changeset:
Modified: trunk/source/smbd/trans2.c
===================================================================
--- trunk/source/smbd/trans2.c	2006-06-09 01:36:58 UTC (rev 16112)
+++ trunk/source/smbd/trans2.c	2006-06-09 01:37:00 UTC (rev 16113)
@@ -3431,7 +3431,7 @@
 
 			SIVAL(pdata,0,sbuf.st_nlink);             /* number of hard links */
 			SIVAL(pdata,4,0);
-			pdata += 8+1;
+			pdata += 8;
 			data_size = PTR_DIFF(pdata,(*ppdata));
 
 			{



More information about the samba-cvs mailing list