summaryrefslogtreecommitdiffstats
path: root/source/winbindd/winbindd_locator.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-05-08 14:23:20 +0200
committerGünther Deschner <gd@samba.org>2008-05-09 14:59:19 +0200
commit82cbb3269b2e764c9c2a2fbcbe9c29feae07fb62 (patch)
treed0c862ceec100989e63a06570fdff6ded7d836c0 /source/winbindd/winbindd_locator.c
parentdbf96120d8b33e592bfd3e9df1777f1670e218be (diff)
downloadsamba-82cbb3269b2e764c9c2a2fbcbe9c29feae07fb62.tar.gz
samba-82cbb3269b2e764c9c2a2fbcbe9c29feae07fb62.tar.xz
samba-82cbb3269b2e764c9c2a2fbcbe9c29feae07fb62.zip
Use strip_hostname after dsgetdcname/getdcname calls.
Guenther
Diffstat (limited to 'source/winbindd/winbindd_locator.c')
-rw-r--r--source/winbindd/winbindd_locator.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/winbindd/winbindd_locator.c b/source/winbindd/winbindd_locator.c
index 10a6c5afeb8..f154f36c851 100644
--- a/source/winbindd/winbindd_locator.c
+++ b/source/winbindd/winbindd_locator.c
@@ -75,14 +75,11 @@ static enum winbindd_result dual_dsgetdcname(struct winbindd_domain *domain,
}
if (info->dc_address) {
- dc = info->dc_address;
- if ((dc[0] == '\\') && (dc[1] == '\\')) {
- dc += 2;
- }
+ dc = strip_hostname(info->dc_address);
}
if ((!dc || !is_ipaddress_v4(dc)) && info->dc_unc) {
- dc = info->dc_unc;
+ dc = strip_hostname(info->dc_unc);
}
if (!dc || !*dc) {