diff options
author | Günther Deschner <gd@samba.org> | 2007-01-24 14:59:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:25 -0500 |
commit | 4b147350b8a8435320cf8fccc60724d7b8b776cc (patch) | |
tree | 0173334457565f6625fd1c9256134d57736dcfc3 | |
parent | 109bebe1f877ab2981a5c0d14ad0982a62436520 (diff) | |
download | samba-4b147350b8a8435320cf8fccc60724d7b8b776cc.tar.gz samba-4b147350b8a8435320cf8fccc60724d7b8b776cc.tar.bz2 samba-4b147350b8a8435320cf8fccc60724d7b8b776cc.zip |
r21003: Display LDAP base in debug statement.
Guenther
(This used to be commit fb5830f87a16dbec16893348080bcdfc61e27ab0)
-rw-r--r-- | source3/libads/ldap_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libads/ldap_utils.c b/source3/libads/ldap_utils.c index e6855674d1..af9e9af2b8 100644 --- a/source3/libads/ldap_utils.c +++ b/source3/libads/ldap_utils.c @@ -60,8 +60,8 @@ static ADS_STATUS ads_do_search_retry_internal(ADS_STRUCT *ads, const char *bind status = ads_do_search_all_args(ads, bp, scope, expr, attrs, args, res); } if (ADS_ERR_OK(status)) { - DEBUG(5,("Search for %s gave %d replies\n", - expr, ads_count_replies(ads, *res))); + DEBUG(5,("Search for %s in <%s> gave %d replies\n", + expr, bp, ads_count_replies(ads, *res))); SAFE_FREE(bp); return status; } |