update copyright notice

This commit is contained in:
Automatic Updater 2010-09-24 08:31:23 +00:00
parent 9b1207058e
commit 7041e86986
2 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004, 2005, 2007, 2010 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: query.h,v 1.41 2010/09/24 05:09:02 marka Exp $ */
/* $Id: query.h,v 1.42 2010/09/24 08:31:23 tbox Exp $ */
#ifndef NAMED_QUERY_H
#define NAMED_QUERY_H 1

View file

@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: server.c,v 1.584 2010/09/24 05:09:02 marka Exp $ */
/* $Id: server.c,v 1.585 2010/09/24 08:31:23 tbox Exp $ */
/*! \file */
@ -1445,8 +1445,8 @@ configure_view(dns_view_t *view, cfg_parser_t* parser,
}
CHECK(configure_view_acl(NULL, ns_g_config, "allow-query", NULL, actx,
ns_g_mctx, &view->queryacl));
ns_g_mctx, &view->queryacl));
/*
* Configure the zones.
*/
@ -2079,12 +2079,12 @@ configure_view(dns_view_t *view, cfg_parser_t* parser,
*/
if (view->cacheacl == NULL && view->recursionacl != NULL)
dns_acl_attach(view->recursionacl, &view->cacheacl);
/*
* XXXEACH: This call to configure_view_acl() is redundant. We
* are leaving it as it is because we are making a minimal change
* for a patch release. In the future this should be changed to
* dns_acl_attach(view->queryacl, &view->cacheacl).
*/
/*
* XXXEACH: This call to configure_view_acl() is redundant. We
* are leaving it as it is because we are making a minimal change
* for a patch release. In the future this should be changed to
* dns_acl_attach(view->queryacl, &view->cacheacl).
*/
if (view->cacheacl == NULL && view->recursion)
CHECK(configure_view_acl(vconfig, config, "allow-query", NULL,
actx, ns_g_mctx, &view->cacheacl));
@ -2112,8 +2112,8 @@ configure_view(dns_view_t *view, cfg_parser_t* parser,
"allow-query-cache", NULL,
actx, ns_g_mctx,
&view->cacheacl));
else
CHECK(dns_acl_none(mctx, &view->cacheacl));
else
CHECK(dns_acl_none(mctx, &view->cacheacl));
}
/*