summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/pvfs_shortname.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-12-31 01:03:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:47 -0500
commit0128bd6d3f06fd433ec3747686da1e1a1133ab3d (patch)
treef27c840d4351bab0005b9ef0493b43fa55e05aa3 /source4/ntvfs/posix/pvfs_shortname.c
parent00c7f9eed81866568abe1ec8a908fb4bc9274b59 (diff)
downloadsamba-0128bd6d3f06fd433ec3747686da1e1a1133ab3d.tar.gz
samba-0128bd6d3f06fd433ec3747686da1e1a1133ab3d.tar.bz2
samba-0128bd6d3f06fd433ec3747686da1e1a1133ab3d.zip
r4423: give lp_parm_int() and lp_parm_ulong() default values
metze (This used to be commit c44f4d44b51789916e50c9da93046d0a15245edc)
Diffstat (limited to 'source4/ntvfs/posix/pvfs_shortname.c')
-rw-r--r--source4/ntvfs/posix/pvfs_shortname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_shortname.c b/source4/ntvfs/posix/pvfs_shortname.c
index c0fc2fb136..9efd1cec85 100644
--- a/source4/ntvfs/posix/pvfs_shortname.c
+++ b/source4/ntvfs/posix/pvfs_shortname.c
@@ -604,7 +604,7 @@ NTSTATUS pvfs_mangle_init(struct pvfs_state *pvfs)
memset(ctx->prefix_cache, 0, sizeof(char *)*MANGLE_CACHE_SIZE);
memset(ctx->prefix_cache_hashes, 0, sizeof(uint32_t)*MANGLE_CACHE_SIZE);
- ctx->mangle_prefix = lp_parm_int(-1, "mangle", "prefix");
+ ctx->mangle_prefix = lp_parm_int(-1, "mangle", "prefix", -1);
if (ctx->mangle_prefix < 0 || ctx->mangle_prefix > 6) {
ctx->mangle_prefix = DEFAULT_MANGLE_PREFIX;
}