1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

param: Rename variable used for lp_wins_dns_proxy bWINSdnsProxy

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 cd8aed9ce7
commit f12b576133
3 changed files with 3 additions and 3 deletions

View File

@ -235,7 +235,7 @@ 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, winbind_use_default_domain)
FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)
FN_GLOBAL_BOOL(wins_dns_proxy, wins_dns_proxy)
FN_GLOBAL_BOOL(wins_proxy, bWINSproxy)
FN_GLOBAL_CONST_STRING(afs_username_map, szAfsUsernameMap)
FN_GLOBAL_CONST_STRING(ctdbd_socket, ctdbdSocket)

View File

@ -2890,7 +2890,7 @@ static struct parm_struct parm_table[] = {
.label = "dns proxy",
.type = P_BOOL,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(bWINSdnsProxy),
.offset = GLOBAL_VAR(wins_dns_proxy),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,

View File

@ -953,7 +953,7 @@ static void init_globals(bool reinit_globals)
TALLOC_FREE(Globals.szInitLogonDelayedHosts);
Globals.InitLogonDelay = 100; /* 100 ms default delay */
Globals.bWINSdnsProxy = true;
Globals.wins_dns_proxy = true;
Globals.allow_trusted_domains = true;
string_set(&Globals.szIdmapBackend, "tdb");