2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

update copyright notice

This commit is contained in:
Automatic Updater 2009-05-06 23:47:50 +00:00
parent db5b7e2cdf
commit 7a272c6b0d
4 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2004-2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000-2003 Internet Software Consortium. * Copyright (C) 2000-2003 Internet Software Consortium.
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: host.c,v 1.117 2009/05/06 10:16:32 fdupont Exp $ */ /* $Id: host.c,v 1.118 2009/05/06 23:47:50 tbox Exp $ */
/*! \file */ /*! \file */
@ -287,10 +287,10 @@ printsection(dns_message_t *msg, dns_section_t sectionid,
if (query->lookup->rdtype == dns_rdatatype_axfr && if (query->lookup->rdtype == dns_rdatatype_axfr &&
!((!list_addresses && !((!list_addresses &&
(list_type == dns_rdatatype_any || (list_type == dns_rdatatype_any ||
rdataset->type == list_type)) || rdataset->type == list_type)) ||
(list_addresses && (list_addresses &&
(rdataset->type == dns_rdatatype_a || (rdataset->type == dns_rdatatype_a ||
rdataset->type == dns_rdatatype_aaaa || rdataset->type == dns_rdatatype_aaaa ||
rdataset->type == dns_rdatatype_ns || rdataset->type == dns_rdatatype_ns ||
rdataset->type == dns_rdatatype_ptr)))) rdataset->type == dns_rdatatype_ptr))))
continue; continue;
@ -394,7 +394,7 @@ chase_cnamechain(dns_message_t *msg, dns_name_t *qname) {
dns_rdata_t rdata = DNS_RDATA_INIT; dns_rdata_t rdata = DNS_RDATA_INIT;
unsigned int i = msg->counts[DNS_SECTION_ANSWER]; unsigned int i = msg->counts[DNS_SECTION_ANSWER];
while (i-- > 0) { while (i-- > 0) {
rdataset = NULL; rdataset = NULL;
result = dns_message_findname(msg, DNS_SECTION_ANSWER, qname, result = dns_message_findname(msg, DNS_SECTION_ANSWER, qname,
dns_rdatatype_cname, 0, NULL, dns_rdatatype_cname, 0, NULL,
@ -468,7 +468,7 @@ printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
sizeof(lookup->textname)); sizeof(lookup->textname));
lookup->textname[sizeof(lookup->textname)-1] = 0; lookup->textname[sizeof(lookup->textname)-1] = 0;
lookup->rdtype = dns_rdatatype_aaaa; lookup->rdtype = dns_rdatatype_aaaa;
lookup->rdtypeset = ISC_TRUE; lookup->rdtypeset = ISC_TRUE;
lookup->origin = NULL; lookup->origin = NULL;
lookup->retries = tries; lookup->retries = tries;
ISC_LIST_APPEND(lookup_list, lookup, link); ISC_LIST_APPEND(lookup_list, lookup, link);
@ -479,7 +479,7 @@ printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
sizeof(lookup->textname)); sizeof(lookup->textname));
lookup->textname[sizeof(lookup->textname)-1] = 0; lookup->textname[sizeof(lookup->textname)-1] = 0;
lookup->rdtype = dns_rdatatype_mx; lookup->rdtype = dns_rdatatype_mx;
lookup->rdtypeset = ISC_TRUE; lookup->rdtypeset = ISC_TRUE;
lookup->origin = NULL; lookup->origin = NULL;
lookup->retries = tries; lookup->retries = tries;
ISC_LIST_APPEND(lookup_list, lookup, link); ISC_LIST_APPEND(lookup_list, lookup, link);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000-2003 Internet Software Consortium. * Copyright (C) 2000-2003 Internet Software Consortium.
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: nslookup.c,v 1.121 2009/05/06 11:41:07 fdupont Exp $ */ /* $Id: nslookup.c,v 1.122 2009/05/06 23:47:50 tbox Exp $ */
#include <config.h> #include <config.h>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2004-2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2002 Internet Software Consortium. * Copyright (C) 1999-2002 Internet Software Consortium.
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: events.h,v 1.50 2009/05/06 22:53:54 jinmei Exp $ */ /* $Id: events.h,v 1.51 2009/05/06 23:47:50 tbox Exp $ */
#ifndef DNS_EVENTS_H #ifndef DNS_EVENTS_H
#define DNS_EVENTS_H 1 #define DNS_EVENTS_H 1

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2004-2007, 2009 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2003 Internet Software Consortium. * Copyright (C) 2003 Internet Software Consortium.
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: hash.c,v 1.14 2009/05/06 22:53:54 jinmei Exp $ */ /* $Id: hash.c,v 1.15 2009/05/06 23:47:50 tbox Exp $ */
/*! \file /*! \file
* Some portion of this code was derived from universal hash function * Some portion of this code was derived from universal hash function