diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-05-18 12:34:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:06 -0500 |
commit | e6da54799ca20277de43357ba73412fbb675aa8f (patch) | |
tree | e2cf8dff8d86ede3fea6be591d93dd30c342f06e /source4/ntvfs | |
parent | 799113e1f9f199a38e52e33c69c592bc39f2a57a (diff) | |
download | samba-e6da54799ca20277de43357ba73412fbb675aa8f.tar.gz samba-e6da54799ca20277de43357ba73412fbb675aa8f.tar.bz2 samba-e6da54799ca20277de43357ba73412fbb675aa8f.zip |
r15694: for the cifs backend it's desired that we pull and repush
the packets with our parsing code for the most stuff.
So make cifs:maptrans2=yes the default.
metze
(This used to be commit 2a9e55fafc1368496bec4c4870070cfa0a19ca5e)
Diffstat (limited to 'source4/ntvfs')
-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 5eaab631db..e12fd3de2f 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -175,7 +175,7 @@ static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, "cifs", "mapgeneric", False); private->map_trans2 = lp_parm_bool(ntvfs->ctx->config.snum, - "cifs", "maptrans2", False); + "cifs", "maptrans2", True); return NT_STATUS_OK; } |