diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:54 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:55 -0800 |
commit | f0565a835ec6bd10d3778585646eb7aec47e1012 (patch) | |
tree | a9f9c6c9a71471c1e446710ce3009977778ce7ed /lib/param/param_table.c | |
parent | cf3b40bdb816dd59497a2d41c39acc37a419bc43 (diff) | |
download | samba-f0565a835ec6bd10d3778585646eb7aec47e1012.tar.gz samba-f0565a835ec6bd10d3778585646eb7aec47e1012.tar.xz samba-f0565a835ec6bd10d3778585646eb7aec47e1012.zip |
param: Rename variable used for lp_timestamp_logs bTimestampLogs
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/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index d5425eb842..686e47d99f 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1193,7 +1193,7 @@ static struct parm_struct parm_table[] = { .label = "debug timestamp", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bTimestampLogs), + .offset = GLOBAL_VAR(timestamp_logs), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, @@ -1202,7 +1202,7 @@ static struct parm_struct parm_table[] = { .label = "timestamp logs", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bTimestampLogs), + .offset = GLOBAL_VAR(timestamp_logs), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, |