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_winbind_use_default_domain bWinbindUseDefaultDomain

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:59 +13:00
committed by Jeremy Allison
parent f3245c7695
commit cd8aed9ce7
3 changed files with 3 additions and 3 deletions

View File

@ -234,7 +234,7 @@ 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, winbind_trusted_domains_only)
FN_GLOBAL_BOOL(winbind_use_default_domain, bWinbindUseDefaultDomain)
FN_GLOBAL_BOOL(winbind_use_default_domain, winbind_use_default_domain)
FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)
FN_GLOBAL_BOOL(wins_proxy, bWINSproxy)
FN_GLOBAL_CONST_STRING(afs_username_map, szAfsUsernameMap)

View File

@ -4049,7 +4049,7 @@ static struct parm_struct parm_table[] = {
.label = "winbind use default domain",
.type = P_BOOL,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(bWinbindUseDefaultDomain),
.offset = GLOBAL_VAR(winbind_use_default_domain),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,

View File

@ -982,7 +982,7 @@ static void init_globals(bool reinit_globals)
Globals.winbind_max_clients = 200;
Globals.winbind_enum_users = false;
Globals.winbind_enum_groups = false;
Globals.bWinbindUseDefaultDomain = false;
Globals.winbind_use_default_domain = false;
Globals.winbind_trusted_domains_only = false;
Globals.winbind_nested_groups = true;
Globals.winbind_expand_groups = 1;