summaryrefslogtreecommitdiffstats
path: root/lib/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:45 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:51 -0800
commitbdd254d0bbb7423e6a7d054303319a7bc2d56f37 (patch)
tree4765a81433200af23ae714020ec9a92191976e86 /lib/param
parent0a925317a027d56e72bb72ecf192d00cb24d3415 (diff)
downloadsamba-bdd254d0bbb7423e6a7d054303319a7bc2d56f37.tar.gz
samba-bdd254d0bbb7423e6a7d054303319a7bc2d56f37.tar.xz
samba-bdd254d0bbb7423e6a7d054303319a7bc2d56f37.zip
param: Rename variable used for lp_debug_hires_timestamp bDebugHiresTimestamp
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param')
-rw-r--r--lib/param/loadparm.c2
-rw-r--r--lib/param/param_functions.c2
-rw-r--r--lib/param/param_table.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c
index 115a57c838..bf29b863a8 100644
--- a/lib/param/loadparm.c
+++ b/lib/param/loadparm.c
@@ -2316,7 +2316,7 @@ static bool lpcfg_update(struct loadparm_context *lp_ctx)
settings.syslog_only = lp_ctx->globals->bSyslogOnly;
settings.timestamp_logs = lp_ctx->globals->bTimestampLogs;
settings.debug_prefix_timestamp = lp_ctx->globals->bDebugPrefixTimestamp;
- settings.debug_hires_timestamp = lp_ctx->globals->bDebugHiresTimestamp;
+ settings.debug_hires_timestamp = lp_ctx->globals->debug_hires_timestamp;
settings.debug_pid = lp_ctx->globals->bDebugPid;
settings.debug_uid = lp_ctx->globals->bDebugUid;
settings.debug_class = lp_ctx->globals->debug_class;
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index 3ba8032a53..dac2bad954 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -167,7 +167,7 @@ FN_GLOBAL_BOOL(client_use_spnego_principal, client_use_spnego_principal)
FN_GLOBAL_BOOL(clustering, clustering)
FN_GLOBAL_BOOL(create_krb5_conf, create_krb5_conf)
FN_GLOBAL_BOOL(debug_class, debug_class)
-FN_GLOBAL_BOOL(debug_hires_timestamp, bDebugHiresTimestamp)
+FN_GLOBAL_BOOL(debug_hires_timestamp, debug_hires_timestamp)
FN_GLOBAL_BOOL(debug_pid, bDebugPid)
FN_GLOBAL_BOOL(debug_prefix_timestamp, bDebugPrefixTimestamp)
FN_GLOBAL_BOOL(debug_uid, bDebugUid)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 4079169d02..76641ef811 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -1220,7 +1220,7 @@ static struct parm_struct parm_table[] = {
.label = "debug hires timestamp",
.type = P_BOOL,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(bDebugHiresTimestamp),
+ .offset = GLOBAL_VAR(debug_hires_timestamp),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,