diff options
| -rw-r--r-- | lib/param/param_functions.c | 2 | ||||
| -rw-r--r-- | lib/param/param_table.c | 2 | ||||
| -rw-r--r-- | 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 8e8371a10a..f20a2036c4 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -200,7 +200,7 @@ FN_GLOBAL_BOOL(ntlm_auth, ntlm_auth) FN_GLOBAL_BOOL(nt_pipe_support, nt_pipe_support) FN_GLOBAL_BOOL(nt_status_support, nt_status_support) FN_GLOBAL_BOOL(null_passwords, null_passwords) -FN_GLOBAL_BOOL(obey_pam_restrictions, bObeyPamRestrictions) +FN_GLOBAL_BOOL(obey_pam_restrictions, obey_pam_restrictions) FN_GLOBAL_BOOL(pam_password_change, bPamPasswordChange) FN_GLOBAL_BOOL(passdb_expand_explicit, bPassdbExpandExplicit) FN_GLOBAL_BOOL(passwd_chat_debug, bPasswdChatDebug) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 59c0c5066c..943b942fdf 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -493,7 +493,7 @@ static struct parm_struct parm_table[] = { .label = "obey pam restrictions", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bObeyPamRestrictions), + .offset = GLOBAL_VAR(obey_pam_restrictions), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 8970143e82..4564a5c5df 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -838,7 +838,7 @@ static void init_globals(bool reinit_globals) Globals.bReadRaw = true; Globals.bWriteRaw = true; Globals.null_passwords = false; - Globals.bObeyPamRestrictions = false; + Globals.obey_pam_restrictions = false; Globals.syslog = 1; Globals.bSyslogOnly = false; Globals.bTimestampLogs = true; |
