summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/param/param_functions.c2
-rw-r--r--lib/param/param_table.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index e3ffc78eb7..c266940488 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -346,7 +346,7 @@ FN_GLOBAL_INTEGER(winbind_cache_time, winbind_cache_time)
FN_GLOBAL_INTEGER(winbind_expand_groups, winbind_expand_groups)
FN_GLOBAL_INTEGER(winbind_max_clients, winbind_max_clients)
FN_GLOBAL_INTEGER(winbind_reconnect_delay, winbind_reconnect_delay)
-FN_GLOBAL_LIST(auth_methods, AuthMethods)
+FN_GLOBAL_LIST(auth_methods, auth_methods)
FN_GLOBAL_LIST(cluster_addresses, szClusterAddresses)
FN_GLOBAL_LIST(dcerpc_endpoint_servers, dcerpc_ep_servers)
FN_GLOBAL_LIST(dns_update_command, szDNSUpdateCommand)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 73504fc19a..ff31bf5c0b 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -430,7 +430,7 @@ static struct parm_struct parm_table[] = {
.label = "auth methods",
.type = P_LIST,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(AuthMethods),
+ .offset = GLOBAL_VAR(auth_methods),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,