From 5f0dcfc5acc8680a2246c3c8021a7dfb0ecba95c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:03:58 +1300 Subject: [PATCH] param: Rename variable used for lp_winbind_refresh_tickets bWinbindRefreshTickets Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- lib/param/param_functions.c | 2 +- lib/param/param_table.c | 2 +- source3/param/loadparm.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 98cdb2d8d14..7f2a0d8ba10 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -230,7 +230,7 @@ FN_GLOBAL_BOOL(winbind_enum_users, winbind_enum_users) FN_GLOBAL_BOOL(winbind_nested_groups, winbind_nested_groups) FN_GLOBAL_BOOL(winbind_normalize_names, winbind_normalize_names) FN_GLOBAL_BOOL(winbind_offline_logon, winbind_offline_logon) -FN_GLOBAL_BOOL(winbind_refresh_tickets, bWinbindRefreshTickets) +FN_GLOBAL_BOOL(winbind_refresh_tickets, winbind_refresh_tickets) FN_GLOBAL_BOOL(winbind_rpc_only, bWinbindRpcOnly) FN_GLOBAL_BOOL(winbind_sealed_pipes, bWinbindSealedPipes) FN_GLOBAL_BOOL(winbind_trusted_domains_only, bWinbindTrustedDomainsOnly) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index c641be89931..c29109348fb 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4094,7 +4094,7 @@ static struct parm_struct parm_table[] = { .label = "winbind refresh tickets", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bWinbindRefreshTickets), + .offset = GLOBAL_VAR(winbind_refresh_tickets), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 045acee48db..d333d1a2a8e 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -987,7 +987,7 @@ static void init_globals(bool reinit_globals) Globals.winbind_nested_groups = true; Globals.winbind_expand_groups = 1; Globals.szWinbindNssInfo = (const char **)str_list_make_v3(NULL, "template", NULL); - Globals.bWinbindRefreshTickets = false; + Globals.winbind_refresh_tickets = false; Globals.winbind_offline_logon = false; Globals.iIdmapCacheTime = 86400 * 7; /* a week by default */ -- 2.11.4.GIT