1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

param: Rename variable used for lp_winbind_trusted_domains_only bWinbindTrustedDomainsOnly

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 422de1138c
commit f3245c7695
3 changed files with 3 additions and 3 deletions

View File

@ -233,7 +233,7 @@ 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, winbind_sealed_pipes)
FN_GLOBAL_BOOL(winbind_trusted_domains_only, bWinbindTrustedDomainsOnly)
FN_GLOBAL_BOOL(winbind_trusted_domains_only, winbind_trusted_domains_only)
FN_GLOBAL_BOOL(winbind_use_default_domain, bWinbindUseDefaultDomain)
FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)
FN_GLOBAL_BOOL(wins_proxy, bWINSproxy)

View File

@ -4058,7 +4058,7 @@ static struct parm_struct parm_table[] = {
.label = "winbind trusted domains only",
.type = P_BOOL,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(bWinbindTrustedDomainsOnly),
.offset = GLOBAL_VAR(winbind_trusted_domains_only),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,

View File

@ -983,7 +983,7 @@ static void init_globals(bool reinit_globals)
Globals.winbind_enum_users = false;
Globals.winbind_enum_groups = false;
Globals.bWinbindUseDefaultDomain = false;
Globals.bWinbindTrustedDomainsOnly = false;
Globals.winbind_trusted_domains_only = false;
Globals.winbind_nested_groups = true;
Globals.winbind_expand_groups = 1;
Globals.szWinbindNssInfo = (const char **)str_list_make_v3(NULL, "template", NULL);