summaryrefslogtreecommitdiffstats
path: root/lib/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:46 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:52 -0800
commit673d12d61a7b2fbcd3a6bd2e9e613d2172ce1147 (patch)
treec703369089cd658ae80deb8dbec98f56df4503ac /lib/param
parent2aec130334684675145e7d7f646ee36360ea7914 (diff)
downloadsamba-673d12d61a7b2fbcd3a6bd2e9e613d2172ce1147.tar.gz
samba-673d12d61a7b2fbcd3a6bd2e9e613d2172ce1147.tar.xz
samba-673d12d61a7b2fbcd3a6bd2e9e613d2172ce1147.zip
param: Rename variable used for lp_enable_asu_support bASUSupport
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.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index b310c6ef1e..3e888a4e29 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -175,7 +175,7 @@ FN_GLOBAL_BOOL(defer_sharing_violations, defer_sharing_violations)
FN_GLOBAL_BOOL(disable_netbios, disable_netbios)
FN_GLOBAL_BOOL(_disable_spoolss, _disable_spoolss)
FN_GLOBAL_BOOL(_domain_logons, _domain_logons)
-FN_GLOBAL_BOOL(enable_asu_support, bASUSupport)
+FN_GLOBAL_BOOL(enable_asu_support, enable_asu_support)
FN_GLOBAL_BOOL(enable_core_files, bEnableCoreFiles)
FN_GLOBAL_BOOL(enable_privileges, bEnablePrivileges)
FN_GLOBAL_BOOL(encrypted_passwords, bEncryptPasswords)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 725f508f4a..4e5e5f227a 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -1645,7 +1645,7 @@ static struct parm_struct parm_table[] = {
.label = "enable asu support",
.type = P_BOOL,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(bASUSupport),
+ .offset = GLOBAL_VAR(enable_asu_support),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,