diff options
-rw-r--r-- | lib/param/loadparm.c | 2 | ||||
-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 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 7fcd32755e..90ecaf1627 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -2315,7 +2315,7 @@ static bool lpcfg_update(struct loadparm_context *lp_ctx) settings.syslog = lp_ctx->globals->syslog; settings.syslog_only = lp_ctx->globals->bSyslogOnly; settings.timestamp_logs = lp_ctx->globals->bTimestampLogs; - settings.debug_prefix_timestamp = lp_ctx->globals->bDebugPrefixTimestamp; + settings.debug_prefix_timestamp = lp_ctx->globals->debug_prefix_timestamp; settings.debug_hires_timestamp = lp_ctx->globals->debug_hires_timestamp; settings.debug_pid = lp_ctx->globals->debug_pid; settings.debug_uid = lp_ctx->globals->bDebugUid; diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index fd88adf6a6..5f748c01b6 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -169,7 +169,7 @@ FN_GLOBAL_BOOL(create_krb5_conf, create_krb5_conf) FN_GLOBAL_BOOL(debug_class, debug_class) FN_GLOBAL_BOOL(debug_hires_timestamp, debug_hires_timestamp) FN_GLOBAL_BOOL(debug_pid, debug_pid) -FN_GLOBAL_BOOL(debug_prefix_timestamp, bDebugPrefixTimestamp) +FN_GLOBAL_BOOL(debug_prefix_timestamp, debug_prefix_timestamp) FN_GLOBAL_BOOL(debug_uid, bDebugUid) FN_GLOBAL_BOOL(defer_sharing_violations, bDeferSharingViolations) FN_GLOBAL_BOOL(disable_netbios, bDisableNetbios) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 9c8e1029ba..78cbd1f899 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1211,7 +1211,7 @@ static struct parm_struct parm_table[] = { .label = "debug prefix timestamp", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bDebugPrefixTimestamp), + .offset = GLOBAL_VAR(debug_prefix_timestamp), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 467290f653..8bf4f9c4b3 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -843,7 +843,7 @@ static void init_globals(bool reinit_globals) Globals.bSyslogOnly = false; Globals.bTimestampLogs = true; string_set(&Globals.loglevel, "0"); - Globals.bDebugPrefixTimestamp = false; + Globals.debug_prefix_timestamp = false; Globals.debug_hires_timestamp = true; Globals.debug_pid = false; Globals.bDebugUid = false; |