diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libads/dns.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/libads/dns.c b/source3/libads/dns.c index e0e696c99c..c0d8d61e36 100644 --- a/source3/libads/dns.c +++ b/source3/libads/dns.c @@ -637,8 +637,6 @@ static char *sitename_key(const char *realm) /**************************************************************************** Store the AD client sitename. We store indefinately as every new CLDAP query will re-write this. - If the sitename is "Default-First-Site-Name" we don't store it - as this isn't a valid DNS name. ****************************************************************************/ BOOL sitename_store(const char *realm, const char *sitename) @@ -652,7 +650,7 @@ BOOL sitename_store(const char *realm, const char *sitename) } if (!realm || (strlen(realm) == 0)) { - DEBUG(0,("no realm\n")); + DEBUG(0,("sitename_store: no realm\n")); return False; } @@ -723,7 +721,7 @@ BOOL stored_sitename_changed(const char *realm, const char *sitename) char *new_sitename; if (!realm || (strlen(realm) == 0)) { - DEBUG(0,("no realm\n")); + DEBUG(0,("stored_sitename_changed: no realm\n")); return False; } |