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

param: Rename variable used for lp_winbind_sealed_pipes bWinbindSealedPipes

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:58 +13:00
committed by Jeremy Allison
parent d96d018e93
commit 422de1138c
3 changed files with 3 additions and 3 deletions

View File

@ -232,7 +232,7 @@ FN_GLOBAL_BOOL(winbind_normalize_names, winbind_normalize_names)
FN_GLOBAL_BOOL(winbind_offline_logon, winbind_offline_logon)
FN_GLOBAL_BOOL(winbind_refresh_tickets, winbind_refresh_tickets)
FN_GLOBAL_BOOL(winbind_rpc_only, winbind_rpc_only)
FN_GLOBAL_BOOL(winbind_sealed_pipes, bWinbindSealedPipes)
FN_GLOBAL_BOOL(winbind_sealed_pipes, winbind_sealed_pipes)
FN_GLOBAL_BOOL(winbind_trusted_domains_only, bWinbindTrustedDomainsOnly)
FN_GLOBAL_BOOL(winbind_use_default_domain, bWinbindUseDefaultDomain)
FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)

View File

@ -4175,7 +4175,7 @@ static struct parm_struct parm_table[] = {
.label = "winbind sealed pipes",
.type = P_BOOL,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(bWinbindSealedPipes),
.offset = GLOBAL_VAR(winbind_sealed_pipes),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,

View File

@ -832,7 +832,7 @@ static void init_globals(bool reinit_globals)
Globals.security = SEC_USER;
Globals.encrypted_passwords = true;
Globals.clientSchannel = Auto;
Globals.bWinbindSealedPipes = true;
Globals.winbind_sealed_pipes = true;
Globals.require_strong_key = true;
Globals.serverSchannel = Auto;
Globals.bReadRaw = true;