From: Günther Deschner Date: Fri, 29 Jun 2007 11:54:29 +0000 (+0000) Subject: r23654: Remove misleading inline comment. X-Git-Tag: samba-4.0.0alpha6~801^2~5510 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ead92f06d11ae1cbedf2b700bdbf96da5602a1d;p=thirdparty%2Fsamba.git r23654: Remove misleading inline comment. Guenther (This used to be commit a3441c22b342e2802bd9766b7046073db3895a29) --- 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; }