summaryrefslogtreecommitdiff
path: root/source3/libads/ldap_utils.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-01-24 14:59:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:25 -0500
commit4b147350b8a8435320cf8fccc60724d7b8b776cc (patch)
tree0173334457565f6625fd1c9256134d57736dcfc3 /source3/libads/ldap_utils.c
parent109bebe1f877ab2981a5c0d14ad0982a62436520 (diff)
downloadsamba-4b147350b8a8435320cf8fccc60724d7b8b776cc.tar.gz
samba-4b147350b8a8435320cf8fccc60724d7b8b776cc.tar.bz2
samba-4b147350b8a8435320cf8fccc60724d7b8b776cc.zip
r21003: Display LDAP base in debug statement.
Guenther (This used to be commit fb5830f87a16dbec16893348080bcdfc61e27ab0)
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 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;
}