diff options
author | Günther Deschner <gd@samba.org> | 2006-10-13 09:44:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:26 -0500 |
commit | 424d7640b8d3a3e7f464ae429322b943985c11fe (patch) | |
tree | a933343ac2334920702fbb7a20b71054a6f96b85 | |
parent | 0c72a09e7d9f3ce06befe76b102cb6361d9382a4 (diff) | |
download | samba-424d7640b8d3a3e7f464ae429322b943985c11fe.tar.gz samba-424d7640b8d3a3e7f464ae429322b943985c11fe.tar.bz2 samba-424d7640b8d3a3e7f464ae429322b943985c11fe.zip |
r19263: Be more accurate in telling what the sitename problem is in this DEBUG
statement.
Guenther
(This used to be commit 62928734b820f512f940c1ed79048e14b322d060)
-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 6077231ae2..2b36d5575e 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -133,7 +133,7 @@ BOOL ads_sitename_match(ADS_STRUCT *ads) DEBUG(10,("ads_sitename_match: name %s match\n", ads->config.server_site_name)); return True; } - DEBUG(10,("ads_sitename_match: no match %s %s\n", + DEBUG(10,("ads_sitename_match: no match between server: %s and client: %s\n", ads->config.server_site_name ? ads->config.server_site_name : "NULL", ads->config.client_site_name ? ads->config.client_site_name : "NULL")); return False; |