diff options
Diffstat (limited to 'server/providers/data_provider.c')
-rw-r--r-- | server/providers/data_provider.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/providers/data_provider.c b/server/providers/data_provider.c index 0af17a7a..f29f828c 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; |