diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2014-03-10 11:08:41 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-06-04 19:47:39 +0200 |
commit | 16d6c2d2030f0869eed2a8d163cc1cc1bd788838 (patch) | |
tree | fe0d689cd4ba1c29ba4711f396d704668445851a | |
parent | 781b04eb4b1d103120d736b81f1a74ea76a72947 (diff) | |
download | sssd-16d6c2d2030f0869eed2a8d163cc1cc1bd788838.tar.gz sssd-16d6c2d2030f0869eed2a8d163cc1cc1bd788838.tar.xz sssd-16d6c2d2030f0869eed2a8d163cc1cc1bd788838.zip |
LDAP: Fix DEBUG message
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
-rw-r--r-- | src/providers/ldap/ldap_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index fdf17e31e..8133431cc 100644 --- a/src/providers/ldap/ldap_common.c +++ b/src/providers/ldap/ldap_common.c @@ -883,8 +883,8 @@ sdap_attrs_get_sid_str(TALLOC_CTX *mem_ctx, ret = sysdb_attrs_get_el(sysdb_attrs, sid_attr, &el); if (ret != EOK || el->num_values != 1) { - DEBUG(SSSDBG_MINOR_FAILURE, - "No [%s] attribute while id-mapping. [%d][%s]\n", + DEBUG(SSSDBG_TRACE_LIBS, + "No [%s] attribute. [%d][%s]\n", sid_attr, el->num_values, strerror(ret)); return ENOENT; } |