summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-01-24 14:59:01 +0000
committerGünther Deschner <gd@samba.org>2007-01-24 14:59:01 +0000
commit58d3099e6e65d95f8e006737b6c05e6955310bfe (patch)
tree497752adc3b19a7668c8cb6de645be12343f48af
parent77027811f6b42b1740947aefa90efed236791178 (diff)
downloadsamba-58d3099e6e65d95f8e006737b6c05e6955310bfe.tar.gz
samba-58d3099e6e65d95f8e006737b6c05e6955310bfe.tar.xz
samba-58d3099e6e65d95f8e006737b6c05e6955310bfe.zip
r21003: Display LDAP base in debug statement.
Guenther
-rw-r--r--source/libads/ldap_utils.c4
1 files 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;
}