From 982dac8bddc097973ec33def2f1c4ecedf454989 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 24 Nov 2008 17:26:44 -0500 Subject: point PIPE_PATH at /var/lib/sss/pipes, not just the private path so that the same config option can be used for the nss service --- server/util/service_helpers.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/util') diff --git a/server/util/service_helpers.c b/server/util/service_helpers.c index 13cca832..62321083 100644 --- a/server/util/service_helpers.c +++ b/server/util/service_helpers.c @@ -50,7 +50,8 @@ struct service_sbus_ctx *sssd_service_sbus_init(TALLOC_CTX *mem_ctx, ss_ctx = talloc_zero(ctx, struct service_sbus_ctx); if (ss_ctx == NULL) return NULL; - default_monitor_address = talloc_asprintf(ctx, "unix:path=%s/%s", PIPE_PATH,SSSD_SERVICE_PIPE); + default_monitor_address = talloc_asprintf(ctx, "unix:path=%s/%s", + PIPE_PATH, SSSD_SERVICE_PIPE); if (default_monitor_address == NULL) goto error; ret = confdb_get_string(cdb, ctx, -- cgit