summaryrefslogtreecommitdiffstats
path: root/lib/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:25 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:44 -0800
commit58aeebf0cd9efe66548d02953e3df01bc468095e (patch)
treef4ff5b1af8ebe408fc33fe765e03f01ed551ed24 /lib/param
parent92db3642282d1542acf2b6ca5674d897e609ff75 (diff)
downloadsamba-58aeebf0cd9efe66548d02953e3df01bc468095e.tar.gz
samba-58aeebf0cd9efe66548d02953e3df01bc468095e.tar.xz
samba-58aeebf0cd9efe66548d02953e3df01bc468095e.zip
param: Rename variable used for lp_vfs_objects szVfsObjects
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param')
-rw-r--r--lib/param/param_functions.c2
-rw-r--r--lib/param/param_table.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index f209da9c5c..18549eebd8 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -72,7 +72,7 @@ FN_LOCAL_STRING(force_user, force_user)
FN_LOCAL_STRING(force_group, force_group)
FN_LOCAL_LIST(readlist, readlist)
FN_LOCAL_LIST(writelist, writelist)
-FN_LOCAL_LIST(vfs_objects, szVfsObjects)
+FN_LOCAL_LIST(vfs_objects, vfs_objects)
FN_LOCAL_STRING(msdfs_proxy, szMSDfsProxy)
static FN_LOCAL_STRING(volume, volume)
FN_LOCAL_STRING(veto_files, szVetoFiles)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 2e7868750d..97f9c9158b 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -3853,7 +3853,7 @@ static struct parm_struct parm_table[] = {
.label = "vfs objects",
.type = P_LIST,
.p_class = P_LOCAL,
- .offset = LOCAL_VAR(szVfsObjects),
+ .offset = LOCAL_VAR(vfs_objects),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED | FLAG_SHARE,
@@ -3862,7 +3862,7 @@ static struct parm_struct parm_table[] = {
.label = "vfs object",
.type = P_LIST,
.p_class = P_LOCAL,
- .offset = LOCAL_VAR(szVfsObjects),
+ .offset = LOCAL_VAR(vfs_objects),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_HIDE,