summaryrefslogtreecommitdiffstats
path: root/src/db/sysdb_search.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/sysdb_search.c')
-rw-r--r--src/db/sysdb_search.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/db/sysdb_search.c b/src/db/sysdb_search.c
index d5b7a305f..640cf0be5 100644
--- a/src/db/sysdb_search.c
+++ b/src/db/sysdb_search.c
@@ -390,8 +390,8 @@ int sysdb_initgroups(TALLOC_CTX *mem_ctx,
ret = sysdb_getpwnam(tmp_ctx, domain, name, &res);
if (ret != EOK) {
- DEBUG(1, ("sysdb_getpwnam failed: [%d][%s]\n",
- ret, strerror(ret)));
+ DEBUG(1, "sysdb_getpwnam failed: [%d][%s]\n",
+ ret, strerror(ret));
goto done;
}
@@ -403,7 +403,7 @@ int sysdb_initgroups(TALLOC_CTX *mem_ctx,
} else if (res->count != 1) {
ret = EIO;
- DEBUG(1, ("sysdb_getpwnam returned count: [%d]\n", res->count));
+ DEBUG(1, "sysdb_getpwnam returned count: [%d]\n", res->count);
goto done;
}
@@ -728,9 +728,9 @@ errno_t sysdb_netgr_to_entries(TALLOC_CTX *mem_ctx,
&tmp_entry[c]->value.triple.domainname);
if (ret != EOK) {
DEBUG(SSSDBG_IMPORTANT_INFO,
- ("Cannot split netgroup triple [%s], "
+ "Cannot split netgroup triple [%s], "
"this attribute will be skipped \n",
- triple_str));
+ triple_str);
continue;
}
@@ -909,7 +909,7 @@ errno_t sysdb_get_direct_parents(TALLOC_CTX *mem_ctx,
} else if (mtype == SYSDB_MEMBER_GROUP) {
dn = sysdb_group_strdn(tmp_ctx, dom->name, name);
} else {
- DEBUG(1, ("Unknown member type\n"));
+ DEBUG(1, "Unknown member type\n");
ret = EINVAL;
goto done;
}
@@ -939,7 +939,7 @@ errno_t sysdb_get_direct_parents(TALLOC_CTX *mem_ctx,
goto done;
}
- DEBUG(8, ("searching sysdb with filter [%s]\n", member_filter));
+ DEBUG(8, "searching sysdb with filter [%s]\n", member_filter);
ret = sysdb_search_entry(tmp_ctx, dom->sysdb, basedn,
LDB_SCOPE_SUBTREE, member_filter, group_attrs,
@@ -947,8 +947,8 @@ errno_t sysdb_get_direct_parents(TALLOC_CTX *mem_ctx,
if (ret == ENOENT) {
direct_sysdb_count = 0;
} else if (ret != EOK) {
- DEBUG(2, ("sysdb_search_entry failed: [%d]: %s\n",
- ret, strerror(ret)));
+ DEBUG(2, "sysdb_search_entry failed: [%d]: %s\n",
+ ret, strerror(ret));
goto done;
}
@@ -971,7 +971,7 @@ errno_t sysdb_get_direct_parents(TALLOC_CTX *mem_ctx,
direct_parents[pi] = talloc_strdup(direct_parents, tmp_str);
if (!direct_parents[pi]) {
- DEBUG(1, ("A group with no name?\n"));
+ DEBUG(1, "A group with no name?\n");
ret = EIO;
goto done;
}
@@ -979,8 +979,8 @@ errno_t sysdb_get_direct_parents(TALLOC_CTX *mem_ctx,
}
direct_parents[pi] = NULL;
- DEBUG(SSSDBG_TRACE_LIBS, ("%s is a member of %zu sysdb groups\n",
- name, direct_sysdb_count));
+ DEBUG(SSSDBG_TRACE_LIBS, "%s is a member of %zu sysdb groups\n",
+ name, direct_sysdb_count);
*_direct_parents = talloc_steal(mem_ctx, direct_parents);
ret = EOK;
done: