1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

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>
This commit is contained in:
Andrew Bartlett
2013-12-24 16:03:46 +13:00
committed by Jeremy Allison
parent 2aec130334
commit 673d12d61a
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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,

View File

@ -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) {