diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:45 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:51 -0800 |
commit | 0a925317a027d56e72bb72ecf192d00cb24d3415 (patch) | |
tree | c150403f440cca7a41629a6a159c98c3960d266b /lib/param/loadparm.c | |
parent | eb4eadadf0ce72c04c6ec7d53ded0fcacd13e60c (diff) | |
download | samba-0a925317a027d56e72bb72ecf192d00cb24d3415.tar.gz samba-0a925317a027d56e72bb72ecf192d00cb24d3415.tar.xz samba-0a925317a027d56e72bb72ecf192d00cb24d3415.zip |
param: Rename variable used for lp_debug_class bDebugClass
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/loadparm.c')
-rw-r--r-- | lib/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index eab1c3b5ac..115a57c838 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -2319,7 +2319,7 @@ static bool lpcfg_update(struct loadparm_context *lp_ctx) settings.debug_hires_timestamp = lp_ctx->globals->bDebugHiresTimestamp; settings.debug_pid = lp_ctx->globals->bDebugPid; settings.debug_uid = lp_ctx->globals->bDebugUid; - settings.debug_class = lp_ctx->globals->bDebugClass; + settings.debug_class = lp_ctx->globals->debug_class; debug_set_settings(&settings); /* FIXME: This is a bit of a hack, but we can't use a global, since |