summaryrefslogtreecommitdiffstats
path: root/src/providers/proxy
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2011-08-18 15:26:02 +0200
committerStephen Gallagher <sgallagh@redhat.com>2011-08-25 15:46:11 -0400
commit47db32cd9cb2147bb40909352569d7c8274365db (patch)
tree0f9b77fdae651e7e7cb4fb268c413c3146622931 /src/providers/proxy
parent89caf5edcc99f5731e89bd51e6ffaad3ec11c304 (diff)
downloadsssd-47db32cd9cb2147bb40909352569d7c8274365db.tar.gz
sssd-47db32cd9cb2147bb40909352569d7c8274365db.tar.xz
sssd-47db32cd9cb2147bb40909352569d7c8274365db.zip
--debug-timestamps=1 is not passed to providers
https://fedorahosted.org/sssd/ticket/972 --debug-timestamps=1 is now passed to providers
Diffstat (limited to 'src/providers/proxy')
-rw-r--r--src/providers/proxy/proxy_auth.c5
1 files changed, 2 insertions, 3 deletions
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);