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

tridge at samba.org tridge at samba.org
Sun Nov 7 10:09:50 GMT 2004


Author: tridge
Date: 2004-11-07 10:09:50 +0000 (Sun, 07 Nov 2004)
New Revision: 3596

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

Log:
MODE_INFORMATION tests now pass. Only RENAME_INFORMATION level left to
support RAW-SFILEINFO


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


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c	2004-11-07 10:05:35 UTC (rev 3595)
+++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c	2004-11-07 10:09:50 UTC (rev 3596)
@@ -182,7 +182,7 @@
 		return NT_STATUS_OK;
 
 	case RAW_FILEINFO_MODE_INFORMATION:
-		info->mode_information.out.mode = 0; /* what is this? */
+		info->mode_information.out.mode = 0;
 		return NT_STATUS_OK;
 
 	case RAW_FILEINFO_ALIGNMENT_INFORMATION:
@@ -284,6 +284,10 @@
 		info->access_information.out.access_flags = f->access_mask;
 		break;
 
+	case RAW_FILEINFO_MODE_INFORMATION:
+		info->mode_information.out.mode = f->mode;
+		break;
+
 	default:
 		break;
 	}



More information about the samba-cvs mailing list