mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
param: Rename variable used for lp__security security
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
parent
09b8816b8f
commit
7ebd3bb3f1
@ -327,7 +327,7 @@ FN_GLOBAL_INTEGER(os_level, os_level)
|
||||
FN_GLOBAL_INTEGER(passwd_chat_timeout, passwd_chat_timeout)
|
||||
FN_GLOBAL_INTEGER(printcap_cache_time, printcap_cache_time)
|
||||
FN_GLOBAL_INTEGER(restrict_anonymous, restrict_anonymous)
|
||||
FN_GLOBAL_INTEGER(_security, security)
|
||||
FN_GLOBAL_INTEGER(_security, _security)
|
||||
FN_GLOBAL_INTEGER(_server_role, server_role)
|
||||
FN_GLOBAL_INTEGER(server_schannel, server_schannel)
|
||||
FN_GLOBAL_INTEGER(server_signing, server_signing)
|
||||
|
@ -421,7 +421,7 @@ static struct parm_struct parm_table[] = {
|
||||
.label = "security",
|
||||
.type = P_ENUM,
|
||||
.p_class = P_GLOBAL,
|
||||
.offset = GLOBAL_VAR(security),
|
||||
.offset = GLOBAL_VAR(_security),
|
||||
.special = NULL,
|
||||
.enum_list = enum_security,
|
||||
.flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
|
||||
|
@ -827,7 +827,7 @@ static void init_globals(bool reinit_globals)
|
||||
Globals.srv_minprotocol = PROTOCOL_LANMAN1;
|
||||
Globals.cli_maxprotocol = PROTOCOL_NT1;
|
||||
Globals.cli_minprotocol = PROTOCOL_CORE;
|
||||
Globals.security = SEC_AUTO;
|
||||
Globals._security = SEC_AUTO;
|
||||
Globals.encrypted_passwords = true;
|
||||
Globals.client_schannel = Auto;
|
||||
Globals.winbind_sealed_pipes = true;
|
||||
|
Loading…
Reference in New Issue
Block a user