1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

param: Rename variable used for lp_server_schannel serverSchannel

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:04:18 +13:00 committed by Jeremy Allison
parent 395aee409c
commit f1e266ec9b
3 changed files with 3 additions and 3 deletions

View File

@ -330,7 +330,7 @@ FN_GLOBAL_INTEGER(printcap_cache_time, printcap_cache_time)
FN_GLOBAL_INTEGER(restrict_anonymous, restrict_anonymous)
FN_GLOBAL_INTEGER(_security, security)
FN_GLOBAL_INTEGER(_server_role, server_role)
FN_GLOBAL_INTEGER(server_schannel, serverSchannel)
FN_GLOBAL_INTEGER(server_schannel, server_schannel)
FN_GLOBAL_INTEGER(server_signing, server_signing)
FN_GLOBAL_INTEGER(smb2_max_read, ismb2_max_read)
FN_GLOBAL_INTEGER(smb2_max_trans, ismb2_max_trans)

View File

@ -457,7 +457,7 @@ static struct parm_struct parm_table[] = {
.label = "server schannel",
.type = P_ENUM,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(serverSchannel),
.offset = GLOBAL_VAR(server_schannel),
.special = NULL,
.enum_list = enum_bool_auto,
.flags = FLAG_BASIC | FLAG_ADVANCED,

View File

@ -834,7 +834,7 @@ static void init_globals(bool reinit_globals)
Globals.client_schannel = Auto;
Globals.winbind_sealed_pipes = true;
Globals.require_strong_key = true;
Globals.serverSchannel = Auto;
Globals.server_schannel = Auto;
Globals.bReadRaw = true;
Globals.bWriteRaw = true;
Globals.null_passwords = false;