From: Stefan Metzmacher Date: Mon, 27 Oct 2008 18:38:15 +0000 (+0100) Subject: s3:libads/ldap.c: if the client belongs to no site at all any dc is the closest X-Git-Tag: samba-3.3.0rc2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45de61f9b3a2713e2e27178cc336e25c1fc1b15a;p=thirdparty%2Fsamba.git s3:libads/ldap.c: if the client belongs to no site at all any dc is the closest metze Signed-off-by: Stefan Metzmacher Signed-off-by: Günther Deschner (cherry picked from commit f86ef9b53a903485deba94febf90dd4e657cc02b) (cherry picked from commit a8040d59659e58c5cb92c1107a7ff012eff12729) (cherry picked from commit 7baceea20252dec6b64e86ec8b5a73b62b373758) --- diff --git a/source/libads/ldap.c b/source/libads/ldap.c index 8cc9f052e61..622fe24d1ad 100644 --- a/source/libads/ldap.c +++ b/source/libads/ldap.c @@ -162,6 +162,11 @@ bool ads_closest_dc(ADS_STRUCT *ads) return True; } + if (ads->config.client_site_name == NULL) { + DEBUG(10,("ads_closest_dc: client belongs to no site\n")); + return True; + } + DEBUG(10,("ads_closest_dc: %s is not the closest DC\n", ads->config.ldap_server_name));