diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-05-18 12:32:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:06 -0500 |
commit | 799113e1f9f199a38e52e33c69c592bc39f2a57a (patch) | |
tree | f45a01a965e6445fe8b54ce37b94a771b213879d /source4/ntvfs/cifs | |
parent | 5a8ebb7b679c0c79cb0f95ca7b3d92aaa6ce0cdd (diff) | |
download | samba-799113e1f9f199a38e52e33c69c592bc39f2a57a.tar.gz samba-799113e1f9f199a38e52e33c69c592bc39f2a57a.tar.xz samba-799113e1f9f199a38e52e33c69c592bc39f2a57a.zip |
r15693: fix the logic for the "cifs:map_trans2" parameter
we need to return NOT_IMPLEMENTED when mapping is desired
metze
(This used to be commit 09aeb387a0a2f96704d20ecb26f92d4e3d178100)
Diffstat (limited to 'source4/ntvfs/cifs')
-rw-r--r-- | source4/ntvfs/cifs/vfs_cifs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c index fd58d2c8bdc..5eaab631db4 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -877,7 +877,7 @@ static NTSTATUS cvfs_trans2(struct ntvfs_module_context *ntvfs, 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; } |