summaryrefslogtreecommitdiff
path: root/source3/libads/ldap_utils.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2006-09-06 12:34:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:43:30 -0500
commit5a87bbd48a30a3bff8ab70b44b76fed220b098a9 (patch)
tree3388ab65b2252777f5f535e05f1e6139cda887b4 /source3/libads/ldap_utils.c
parenta58dc69813e7f6667f6e6c40072b30f77f36e3a9 (diff)
downloadsamba-5a87bbd48a30a3bff8ab70b44b76fed220b098a9.tar.gz
samba-5a87bbd48a30a3bff8ab70b44b76fed220b098a9.tar.bz2
samba-5a87bbd48a30a3bff8ab70b44b76fed220b098a9.zip
r18172: Just a little more verbosity in this debug statement.
Guenther (This used to be commit e852bc46464fe6dbdf8530f43fcb88fd2eafae67)
Diffstat (limited to 'source3/libads/ldap_utils.c')
-rw-r--r--source3/libads/ldap_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libads/ldap_utils.c b/source3/libads/ldap_utils.c
index 4392cde00b..9559ae117a 100644
--- a/source3/libads/ldap_utils.c
+++ b/source3/libads/ldap_utils.c
@@ -85,8 +85,8 @@ static ADS_STATUS ads_do_search_retry_internal(ADS_STRUCT *ads, const char *bind
*res = NULL;
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 filter: %s, base: %s gave %d replies\n",
+ expr, bp, ads_count_replies(ads, *res)));
SAFE_FREE(bp);
return status;
}