diff options
author | Günther Deschner <gd@samba.org> | 2006-11-10 12:42:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:44 -0500 |
commit | 61a38bd4b83b7f72b479e84daa5ea89164a92f85 (patch) | |
tree | 233a96488361b043f3b94029a14355549bf0c4a9 /source3/nsswitch | |
parent | 331cafd30fc2de8ea1a6727b930933cf912fba27 (diff) | |
download | samba-61a38bd4b83b7f72b479e84daa5ea89164a92f85.tar.gz samba-61a38bd4b83b7f72b479e84daa5ea89164a92f85.tar.bz2 samba-61a38bd4b83b7f72b479e84daa5ea89164a92f85.zip |
r19651: Fix interesting bug with the automatic site coverage in Active Directory:
When having DC-less sites, AD assigns DCs from other sites to that site
that does not have it's own DC. The most reliable way for us to identify
the nearest DC - in that and all other cases - is the closest_dc flag in
the CLDAP reply.
Guenther
(This used to be commit ff004f7284cb047e738ba3d3ad6602e8aa84e883)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index f2d264b2b4..bf23af5b33 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -822,7 +822,7 @@ static BOOL dcip_to_name( const char *domainname, const char *realm, DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags)); - if ((ads->config.flags & ADS_KDC) && ads_sitename_match(ads)) { + if ((ads->config.flags & ADS_KDC) && ads_closest_dc(ads)) { /* We're going to use this KDC for this realm/domain. If we are using sites, then force the krb5 libs to use this KDC. */ |