From 865bdcacae49299c19d7000242832fa41fdfa9d2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Thu, 14 Jun 2007 09:59:07 +0000 Subject: [PATCH] r23484: When chasing AD referrals make sure to honor the base returned from the server. Guenther --- examples/misc/adssearch.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/misc/adssearch.pl b/examples/misc/adssearch.pl index 4482222934f..da22c57f7e4 100755 --- a/examples/misc/adssearch.pl +++ b/examples/misc/adssearch.pl @@ -1781,8 +1781,9 @@ sub main () { if (!$opt_notify && ($async_search->code == LDAP_REFERRAL)) { foreach my $ref ($async_search->referrals) { print "\ngot Referral: [$ref]\n"; + my ($prot, $host, $base) = split(/\/+/, $ref); $async_ldap_hd->unbind(); - $async_ldap_hd = get_ldap_hd($ref, 1); + $async_ldap_hd = get_ldap_hd($host, 1); if (do_bind($async_ldap_hd, $sasl_bind) == -1) { $async_ldap_hd->unbind(); next; -- 2.11.4.GIT