1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

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)
This commit is contained in:
Stefan Metzmacher 2006-05-18 12:32:23 +00:00 committed by Gerald (Jerry) Carter
parent 5a8ebb7b67
commit 799113e1f9

View File

@ -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;
}