From 8ead92f06d11ae1cbedf2b700bdbf96da5602a1d Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Fri, 29 Jun 2007 11:54:29 +0000 Subject: [PATCH] r23654: Remove misleading inline comment. Guenther (This used to be commit a3441c22b342e2802bd9766b7046073db3895a29) --- source3/libads/dns.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source3/libads/dns.c b/source3/libads/dns.c index e0e696c99c9..c0d8d61e362 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; } -- 2.34.1