summaryrefslogtreecommitdiffstats
path: root/src/monitor/monitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/monitor/monitor.c')
-rw-r--r--src/monitor/monitor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c
index 8326f3855..20696246c 100644
--- a/src/monitor/monitor.c
+++ b/src/monitor/monitor.c
@@ -956,7 +956,7 @@ static int get_service_config(struct mt_ctx *ctx, const char *name,
* make sure to pass it into the children, overriding the
* config file.
*/
- svc->command = talloc_asprintf(svc, "%s/sssd_%s -d %d%s%s",
+ svc->command = talloc_asprintf(svc, "%s/sssd_%s -d %#.4x%s%s",
SSSD_LIBEXEC_PATH,
svc->name,
cmdline_debug_level,
@@ -1099,7 +1099,7 @@ static int get_provider_config(struct mt_ctx *ctx, const char *name,
debug_to_file ? " --debug-to-files" : "");
} else {
svc->command = talloc_asprintf(svc,
- "%s/sssd_be --domain %s -d %d%s%s ",
+ "%s/sssd_be --domain %s -d %#.4x%s%s ",
SSSD_LIBEXEC_PATH,
svc->name,
cmdline_debug_level,
@@ -2331,6 +2331,7 @@ int main(int argc, const char *argv[])
return 1;
}
}
+ debug_level = debug_convert_old_level(debug_level);
/* If the level was passed at the command-line, we want
* to save it and pass it to the children later.