diff options
author | Simo Sorce <idra@samba.org> | 2008-11-24 17:26:44 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-11-24 17:44:44 -0500 |
commit | 982dac8bddc097973ec33def2f1c4ecedf454989 (patch) | |
tree | a84080339d61845de2e58798d986c85a95adaed1 /server/util | |
parent | 8c77f1f01f16c05cd8867584b5acf181ef8ce9e0 (diff) | |
download | sssd-982dac8bddc097973ec33def2f1c4ecedf454989.tar.gz sssd-982dac8bddc097973ec33def2f1c4ecedf454989.tar.bz2 sssd-982dac8bddc097973ec33def2f1c4ecedf454989.zip |
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
Diffstat (limited to 'server/util')
-rw-r--r-- | server/util/service_helpers.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, |