From 47db32cd9cb2147bb40909352569d7c8274365db Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Thu, 18 Aug 2011 15:26:02 +0200 Subject: --debug-timestamps=1 is not passed to providers https://fedorahosted.org/sssd/ticket/972 --debug-timestamps=1 is now passed to providers --- src/providers/proxy/proxy_auth.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/providers/proxy') diff --git a/src/providers/proxy/proxy_auth.c b/src/providers/proxy/proxy_auth.c index adb0d8728..81ae896bb 100644 --- a/src/providers/proxy/proxy_auth.c +++ b/src/providers/proxy/proxy_auth.c @@ -240,9 +240,8 @@ static struct tevent_req *proxy_child_init_send(TALLOC_CTX *mem_ctx, state->child_ctx = child_ctx; state->command = talloc_asprintf(req, - "%s/proxy_child -d %#.4x%s%s --domain %s --id %d", - SSSD_LIBEXEC_PATH, debug_level, - (debug_timestamps ? "" : " --debug-timestamps=0"), + "%s/proxy_child -d %#.4x --debug-timestamps=%d%s --domain %s --id %d", + SSSD_LIBEXEC_PATH, debug_level, debug_timestamps, (debug_to_file ? " --debug-to-files" : ""), auth_ctx->be->domain->name, child_ctx->id); -- cgit