summaryrefslogtreecommitdiff
path: root/lib/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-07-23 12:24:42 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-07-24 10:46:12 +1000
commitb94ab3c608eea4eaaad3762ac64995929a354173 (patch)
tree9591ef1dabc79932bb20c4cd51707d876646406f /lib/param
parent8b1a9f3ebd48757e66f6aefc5840986bec223de9 (diff)
downloadsamba-b94ab3c608eea4eaaad3762ac64995929a354173.tar.gz
samba-b94ab3c608eea4eaaad3762ac64995929a354173.tar.bz2
samba-b94ab3c608eea4eaaad3762ac64995929a354173.zip
lib/param: Remove 'case insensitive filesystem'
We use the slightly confusing 'case sensitive = yes' option for the same behaviour. This avoids adding even more confusing documentation for the ntvfs-only option. Andrew Bartlett
Diffstat (limited to 'lib/param')
-rw-r--r--lib/param/loadparm.c8
-rw-r--r--lib/param/param_functions.c1
2 files changed, 0 insertions, 9 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c
index 5559ef621f..407b942dc9 100644
--- a/lib/param/loadparm.c
+++ b/lib/param/loadparm.c
@@ -851,14 +851,6 @@ static struct parm_struct parm_table[] = {
.enum_list = NULL,
.flags = FLAG_ADVANCED,
},
- {
- .label = "case insensitive filesystem",
- .type = P_BOOL,
- .p_class = P_LOCAL,
- .offset = LOCAL_VAR(bCIFileSystem),
- .special = NULL,
- .enum_list = NULL
- },
{
.label = "max print jobs",
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index 4e68d6b5ee..3a0ac75750 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -40,7 +40,6 @@ FN_LOCAL_BOOL(map_hidden, bMap_hidden)
FN_LOCAL_BOOL(map_archive, bMap_archive)
FN_LOCAL_BOOL(oplocks, bOpLocks)
FN_LOCAL_BOOL(strict_sync, bStrictSync)
-FN_LOCAL_BOOL(ci_filesystem, bCIFileSystem)
FN_LOCAL_BOOL(map_system, bMap_system)
FN_LOCAL_INTEGER(max_connections, iMaxConnections)
FN_LOCAL_INTEGER(csc_policy, iCSCPolicy)