summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/param/param_functions.c2
-rw-r--r--lib/param/param_table.c2
-rw-r--r--source3/param/loadparm.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index 7b4170abef..abf5fb9cee 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -271,7 +271,7 @@ FN_GLOBAL_CONST_STRING(winbind_separator, winbind_separator)
FN_GLOBAL_CONST_STRING(workgroup, workgroup)
FN_GLOBAL_CONST_STRING(wtmpdir, wtmpdir)
FN_GLOBAL_INTEGER(afs_token_lifetime, afs_token_lifetime)
-FN_GLOBAL_INTEGER(algorithmic_rid_base, AlgorithmicRidBase)
+FN_GLOBAL_INTEGER(algorithmic_rid_base, algorithmic_rid_base)
FN_GLOBAL_INTEGER(allow_dns_updates, allow_dns_updates)
FN_GLOBAL_INTEGER(cldap_port, cldap_port)
FN_GLOBAL_INTEGER(client_ldap_sasl_wrapping, client_ldap_sasl_wrapping)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 41f8e3a819..bfd31290a2 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -547,7 +547,7 @@ static struct parm_struct parm_table[] = {
.label = "algorithmic rid base",
.type = P_INTEGER,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(AlgorithmicRidBase),
+ .offset = GLOBAL_VAR(algorithmic_rid_base),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 1f85e26bdc..6613484ffc 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -803,7 +803,7 @@ static void init_globals(bool reinit_globals)
Globals.szNameResolveOrder = (const char **)str_list_make_v3(NULL, "lmhosts wins host bcast", NULL);
string_set(&Globals.passwordserver, "*");
- Globals.AlgorithmicRidBase = BASE_RID;
+ Globals.algorithmic_rid_base = BASE_RID;
Globals.load_printers = true;
Globals.PrintcapCacheTime = 750; /* 12.5 minutes */