From 4b147350b8a8435320cf8fccc60724d7b8b776cc Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 24 Jan 2007 14:59:01 +0000 Subject: r21003: Display LDAP base in debug statement. Guenther (This used to be commit fb5830f87a16dbec16893348080bcdfc61e27ab0) --- source3/libads/ldap_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') 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; } -- cgit