From 58d3099e6e65d95f8e006737b6c05e6955310bfe 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 --- source/libads/ldap_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libads/ldap_utils.c b/source/libads/ldap_utils.c index e6855674d17..13782309c72 100644 --- a/source/libads/ldap_utils.c +++ b/source/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