summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/providers/ipa/ipa_config.c')
-rw-r--r--src/providers/ipa/ipa_config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/providers/ipa/ipa_config.c b/src/providers/ipa/ipa_config.c
index 0b392f512..0d564f5b5 100644
--- a/src/providers/ipa/ipa_config.c
+++ b/src/providers/ipa/ipa_config.c
@@ -70,14 +70,14 @@ ipa_get_config_send(TALLOC_CTX *mem_ctx,
ret = domain_to_basedn(state, domain, &ldap_basedn);
if (ret != EOK) {
- DEBUG(SSSDBG_OP_FAILURE, ("domain_to_basedn failed.\n"));
+ DEBUG(SSSDBG_OP_FAILURE, "domain_to_basedn failed.\n");
goto done;
}
state->base = talloc_asprintf(state, IPA_CONFIG_SEARCH_BASE_TEMPLATE,
ldap_basedn);
if (state->base == NULL) {
- DEBUG(SSSDBG_OP_FAILURE, ("talloc_asprintf failed.\n"));
+ DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
@@ -124,8 +124,8 @@ static void ipa_get_config_done(struct tevent_req *subreq)
}
if (reply_count != 1) {
- DEBUG(SSSDBG_OP_FAILURE, ("Unexpected number of results, expected 1, "
- "got %zu.\n", reply_count));
+ DEBUG(SSSDBG_OP_FAILURE, "Unexpected number of results, expected 1, "
+ "got %zu.\n", reply_count);
ret = EINVAL;
goto done;
}