diff options
author | Michael Adam <obnox@samba.org> | 2008-01-04 21:45:28 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-04 22:09:35 +0100 |
commit | 3f42428f9bca5b8473501adc932405cae3c247bb (patch) | |
tree | 873fdff418c492b69b269ae478221ae204cea595 | |
parent | e49c28e604d88e8ab49d8a704d6fc79096dd0bae (diff) | |
download | samba-3f42428f9bca5b8473501adc932405cae3c247bb.tar.gz samba-3f42428f9bca5b8473501adc932405cae3c247bb.tar.bz2 samba-3f42428f9bca5b8473501adc932405cae3c247bb.zip |
Fix a misleading DEBUG message.
At this stage, the (tcp) connection to the LDAP server has not
been established, this is what is about to be attempted. What
has been succesfully done, is a CLDAP netlogon query.
Michael
(This used to be commit 71c3c8ad4c92c5f6267b84ee1d207e5e49e9a4ec)
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 843d57988c..138dfe9015 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -400,7 +400,7 @@ ADS_STATUS ads_connect(ADS_STRUCT *ads) got_connection: print_sockaddr(addr, sizeof(addr), &ads->ldap.ss); - DEBUG(3,("Connected to LDAP server %s\n", addr)); + DEBUG(3,("Successfully contacted LDAP server %s\n", addr)); if (!ads->auth.user_name) { /* Must use the userPrincipalName value here or sAMAccountName |