From 7048040be841c5abb295533ba3c0d70956fce476 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 7 Jul 2006 11:59:19 +0000 Subject: r16862: Reverting accidential changes in ads_try_connect() from previous commit. Guenther (This used to be commit 6257f9af93f2391940b2c60fe39c0bf106de15dd) --- source3/libads/ldap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/libads/ldap.c') diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index ebffd667ebd..b017ff941b9 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -123,7 +123,7 @@ BOOL ads_try_connect(ADS_STRUCT *ads, const char *server ) } DEBUG(5,("ads_try_connect: sending CLDAP request to %s (realm: %s)\n", - server, ads->config.realm)); + server, ads->server.realm)); /* this copes with inet_ntoa brokenness */ @@ -131,7 +131,7 @@ BOOL ads_try_connect(ADS_STRUCT *ads, const char *server ) ZERO_STRUCT( cldap_reply ); - if ( !ads_cldap_netlogon( srv, ads->config.realm, &cldap_reply ) ) { + if ( !ads_cldap_netlogon( srv, ads->server.realm, &cldap_reply ) ) { DEBUG(3,("ads_try_connect: CLDAP request %s failed.\n", srv)); return False; } -- cgit