diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-07-17 17:15:58 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-11 19:44:55 +0200 |
commit | ed242170141dc0e0fa6308f9fcfa0a71805bf8cd (patch) | |
tree | bc98623497209ce6dccadf3ebd9bcb2c7dfd8caa | |
parent | 37817cf318df48bf892da0d7cc21ef85b9b82484 (diff) | |
download | sssd-ed242170141dc0e0fa6308f9fcfa0a71805bf8cd.tar.gz sssd-ed242170141dc0e0fa6308f9fcfa0a71805bf8cd.tar.bz2 sssd-ed242170141dc0e0fa6308f9fcfa0a71805bf8cd.zip |
Fix warning: data argument not used by format string
-rw-r--r-- | src/providers/ldap/sdap_async_groups.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c index 2ce1d5dd..b1118950 100644 --- a/src/providers/ldap/sdap_async_groups.c +++ b/src/providers/ldap/sdap_async_groups.c @@ -1382,7 +1382,9 @@ static void sdap_process_group_members(struct tevent_req *subreq) next: if (ret) { - DEBUG(7, ("Error reading group member. Skipping\n", ret)); + DEBUG(SSSDBG_TRACE_FUNC, + ("Error reading group member[%d]: %s. Skipping\n", + ret, strerror(ret))); state->count--; } /* Are there more searches for uncached users to submit ? */ @@ -2064,7 +2066,8 @@ static errno_t sdap_nested_group_populate_users(TALLOC_CTX *mem_ctx, ret = sss_filter_sanitize(tmp_ctx, original_dn, &clean_orig_dn); if (ret != EOK) { - DEBUG(1, ("Cannot sanitize originalDN\n", i)); + DEBUG(SSSDBG_CRIT_FAILURE, + ("Cannot sanitize originalDN [%s]\n", original_dn)); goto done; } |