diff options
| -rw-r--r-- | lib/param/param_functions.c | 2 | ||||
| -rw-r--r-- | lib/param/param_table.c | 2 | ||||
| -rw-r--r-- | source3/param/loadparm.c | 2 |
3 files changed, 3 insertions, 3 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, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 3fe9c9472d..08866d12bd 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1008,7 +1008,7 @@ static void init_globals(bool reinit_globals) Globals.bEnablePrivileges = true; Globals.bHostMSDfs = true; - Globals.bASUSupport = false; + Globals.enable_asu_support = false; /* User defined shares. */ if (asprintf(&s, "%s/usershares", get_dyn_STATEDIR()) < 0) { |
