diff options
-rw-r--r-- | source3/libads/ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index ebffd667eb..b017ff941b 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; } |