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/providers/data_provider.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/providers/data_provider.c') diff --git a/server/providers/data_provider.c b/server/providers/data_provider.c index 0af17a7a5..f29f828cf 100644 --- a/server/providers/data_provider.c +++ b/server/providers/data_provider.c @@ -203,7 +203,8 @@ static int dp_srv_init(struct dp_ctx *dpctx) } DEBUG(3, ("Initializing Data Provider D-BUS Server\n")); - default_dp_address = talloc_asprintf(tmp_ctx, "unix:path=%s/%s", PIPE_PATH, DATA_PROVIDER_PIPE); + default_dp_address = talloc_asprintf(tmp_ctx, "unix:path=%s/%s", + PIPE_PATH, DATA_PROVIDER_PIPE); if (default_dp_address == NULL) { ret = ENOMEM; goto done; -- cgit