diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index b06657c3c42..844122a62bf 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -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) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 2497c507f79..a4112bbe6ef 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -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, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 30120abc505..b7fd6fe7274 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -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;