svn commit: samba r3258 - in branches/SAMBA_4_0/source/ntvfs/posix: .

tridge at samba.org tridge at samba.org
Tue Oct 26 09:52:00 GMT 2004


Author: tridge
Date: 2004-10-26 09:52:00 +0000 (Tue, 26 Oct 2004)
New Revision: 3258

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

Log:
fixed "don't change" attribute for RAW_SFILEINFO_BASIC_INFO



Modified:
   branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c	2004-10-26 09:50:13 UTC (rev 3257)
+++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c	2004-10-26 09:52:00 UTC (rev 3258)
@@ -226,7 +226,7 @@
 		if (info->basic_info.in.change_time) {
 			newstats.dos.change_time = info->basic_info.in.change_time;
 		}
-		if (info->basic_info.in.attrib != FILE_ATTRIBUTE_NORMAL) {
+		if (info->basic_info.in.attrib != 0) {
 			newstats.dos.attrib = info->basic_info.in.attrib;
 		}
   		break;



More information about the samba-cvs mailing list