svn commit: samba r15693 - in branches/SAMBA_4_0/source/ntvfs/cifs: .

metze at samba.org metze at samba.org
Thu May 18 12:32:24 GMT 2006


Author: metze
Date: 2006-05-18 12:32:23 +0000 (Thu, 18 May 2006)
New Revision: 15693

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

Log:
fix the logic for the "cifs:map_trans2" parameter
we need to return NOT_IMPLEMENTED when mapping is desired

metze
Modified:
   branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c	2006-05-18 12:24:42 UTC (rev 15692)
+++ branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c	2006-05-18 12:32:23 UTC (rev 15693)
@@ -877,7 +877,7 @@
 	struct cvfs_private *private = ntvfs->private_data;
 	struct smbcli_request *c_req;
 
-	if (!private->map_trans2) {
+	if (private->map_trans2) {
 		return NT_STATUS_NOT_IMPLEMENTED;
 	}
 



More information about the samba-cvs mailing list