summaryrefslogtreecommitdiffstats
path: root/source/smbd/mangle.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-05-07 18:37:47 +0000
committerJeremy Allison <jra@samba.org>2004-05-07 18:37:47 +0000
commitd403768ae7e7d7d83efacae072f4448531945071 (patch)
tree45d07d5f2f331c95d937715adbb3463f31d7d1ed /source/smbd/mangle.c
parentbd70334e10f5874643e28e6d2901004b07b6c799 (diff)
downloadsamba-d403768ae7e7d7d83efacae072f4448531945071.tar.gz
samba-d403768ae7e7d7d83efacae072f4448531945071.tar.xz
samba-d403768ae7e7d7d83efacae072f4448531945071.zip
r570: Remove lots of globals to handle case issues - move them
to connection struct entries (as they should have been from the start). Jerry, once you've cut over to 3.0.4 release branch I'll add this to 3.0 also. - Jerry cut over :-). Jeremy.
Diffstat (limited to 'source/smbd/mangle.c')
-rw-r--r--source/smbd/mangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/mangle.c b/source/smbd/mangle.c
index c5d7582c033..b77fe601b69 100644
--- a/source/smbd/mangle.c
+++ b/source/smbd/mangle.c
@@ -120,5 +120,5 @@ void mangle_map(pstring OutName, BOOL need83, BOOL cache83, int snum)
/* invoke the inane "mangled map" code */
mangle_map_filename(OutName, snum);
- mangle_fns->name_map(OutName, need83, cache83);
+ mangle_fns->name_map(OutName, need83, cache83, lp_defaultcase(snum));
}