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

param: Rename variable used for lp_winbind_nss_info szWinbindNssInfo

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:04:25 +13:00 committed by Jeremy Allison
parent 4791c0e616
commit 434a261efb
3 changed files with 3 additions and 3 deletions

View File

@ -365,7 +365,7 @@ FN_GLOBAL_LIST(spn_update_command, spn_update_command)
FN_GLOBAL_LIST(svcctl_list, svcctl_list)
FN_GLOBAL_LIST(usershare_prefix_allow_list, usershare_prefix_allow_list)
FN_GLOBAL_LIST(usershare_prefix_deny_list, usershare_prefix_deny_list)
FN_GLOBAL_LIST(winbind_nss_info, szWinbindNssInfo)
FN_GLOBAL_LIST(winbind_nss_info, winbind_nss_info)
FN_GLOBAL_LIST(wins_server_list, szWINSservers)
FN_GLOBAL_STRING(abort_shutdown_script, szAbortShutdownScript)
FN_GLOBAL_STRING(addgroup_script, szAddGroupScript)

View File

@ -4085,7 +4085,7 @@ static struct parm_struct parm_table[] = {
.label = "winbind nss info",
.type = P_LIST,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(szWinbindNssInfo),
.offset = GLOBAL_VAR(winbind_nss_info),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,

View File

@ -986,7 +986,7 @@ static void init_globals(bool reinit_globals)
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);
Globals.winbind_nss_info = (const char **)str_list_make_v3(NULL, "template", NULL);
Globals.winbind_refresh_tickets = false;
Globals.winbind_offline_logon = false;