diff options
author | Ariel Barria <arielb@fedoraproject.org> | 2012-05-22 07:13:21 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-05-22 09:11:13 -0400 |
commit | 02837b3dda135680051067223b6b30a7e65d1740 (patch) | |
tree | 82597882e3b2525e88016e185359b45c6c3b6ca0 /src/providers | |
parent | a3dd0afecaf1c197ac06e1da5cf59ad985c7abe9 (diff) | |
download | sssd-02837b3dda135680051067223b6b30a7e65d1740.tar.gz sssd-02837b3dda135680051067223b6b30a7e65d1740.tar.xz sssd-02837b3dda135680051067223b6b30a7e65d1740.zip |
Warn to syslog when dereference requests fail
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/ldap/sdap_async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_async.c b/src/providers/ldap/sdap_async.c index a8a12c3d3..14a27bcba 100644 --- a/src/providers/ldap/sdap_async.c +++ b/src/providers/ldap/sdap_async.c @@ -2051,8 +2051,8 @@ static void sdap_deref_search_done(struct tevent_req *subreq) talloc_zfree(subreq); if (ret != EOK) { - DEBUG(2, ("dereference processing failed [%d]: %s\n", - ret, strerror(ret))); + DEBUG(2, ("dereference processing failed [%d]: %s\n", ret, strerror(ret))); + sss_log(SSS_LOG_WARNING, "dereference processing failed : %s", strerror(ret)); tevent_req_error(req, ret); return; } |