diff options
author | Günther Deschner <gd@samba.org> | 2007-01-24 14:59:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:25 -0500 |
commit | fb5830f87a16dbec16893348080bcdfc61e27ab0 (patch) | |
tree | 176e9260f029337fd39a3d7f2f4b451976192f6f /source/libads | |
parent | 9d23cf0cc4a8974bf0cf74b219a1138383083360 (diff) | |
download | samba-fb5830f87a16dbec16893348080bcdfc61e27ab0.tar.gz |
r21003: Display LDAP base in debug statement.
Guenther
Diffstat (limited to 'source/libads')
-rw-r--r-- | source/libads/ldap_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libads/ldap_utils.c b/source/libads/ldap_utils.c index e6855674d17..af9e9af2b8c 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; } |