Author: jra Date: 2006-06-09 01:36:58 +0000 (Fri, 09 Jun 2006) New Revision: 16112
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16112 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: branches/SAMBA_3_0/source/smbd/trans2.c Changeset: Modified: branches/SAMBA_3_0/source/smbd/trans2.c =================================================================== --- branches/SAMBA_3_0/source/smbd/trans2.c 2006-06-09 01:02:54 UTC (rev 16111) +++ branches/SAMBA_3_0/source/smbd/trans2.c 2006-06-09 01:36:58 UTC (rev 16112) @@ -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)); {
