2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 23:25:38 +00:00

update copyright notice

This commit is contained in:
Automatic Updater
2010-02-04 23:49:13 +00:00
parent 9a83aa49de
commit 6f1b350c3a
5 changed files with 18 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
.\" Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") .\" Copyright (C) 2009, 2010 Internet Systems Consortium, Inc. ("ISC")
.\" .\"
.\" Permission to use, copy, modify, and/or distribute this software for any .\" Permission to use, copy, modify, and/or distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above .\" purpose with or without fee is hereby granted, provided that the above
@@ -12,7 +12,7 @@
.\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\" PERFORMANCE OF THIS SOFTWARE. .\" PERFORMANCE OF THIS SOFTWARE.
.\" .\"
.\" $Id: dnssec-settime.8,v 1.10 2010/02/04 01:14:16 tbox Exp $ .\" $Id: dnssec-settime.8,v 1.11 2010/02/04 23:49:13 tbox Exp $
.\" .\"
.hy 0 .hy 0
.ad l .ad l

View File

@@ -1,5 +1,5 @@
<!-- <!--
- Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2009, 2010 Internet Systems Consortium, Inc. ("ISC")
- -
- Permission to use, copy, modify, and/or distribute this software for any - Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above - purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,7 @@
- PERFORMANCE OF THIS SOFTWARE. - PERFORMANCE OF THIS SOFTWARE.
--> -->
<!-- $Id: dnssec-settime.html,v 1.10 2010/02/04 01:14:16 tbox Exp $ --> <!-- $Id: dnssec-settime.html,v 1.11 2010/02/04 23:49:13 tbox Exp $ -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2008, 2009 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2008-2010 Internet Systems Consortium, Inc. ("ISC")
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: statschannel.c,v 1.25 2010/02/04 00:57:25 marka Exp $ */ /* $Id: statschannel.c,v 1.26 2010/02/04 23:49:13 tbox Exp $ */
/*! \file */ /*! \file */
@@ -505,9 +505,9 @@ dump_counters(isc_stats_t *stats, statsformat_t type, void *arg,
desc[index])); desc[index]));
} }
TRY0(xmlTextWriterWriteFormatString(writer, TRY0(xmlTextWriterWriteFormatString(writer,
"%" "%"
ISC_PRINT_QUADFORMAT ISC_PRINT_QUADFORMAT
"u", value)); "u", value));
TRY0(xmlTextWriterEndElement(writer)); /* counter */ TRY0(xmlTextWriterEndElement(writer)); /* counter */
if (category != NULL) if (category != NULL)
TRY0(xmlTextWriterEndElement(writer)); /* category */ TRY0(xmlTextWriterEndElement(writer)); /* category */
@@ -876,16 +876,16 @@ generatexml(ns_server_t *server, int *buflen, xmlChar **buf) {
result = dump_counters(server->nsstats, statsformat_xml, writer, result = dump_counters(server->nsstats, statsformat_xml, writer,
"nsstat", nsstats_xmldesc, "nsstat", nsstats_xmldesc,
dns_nsstatscounter_max, dns_nsstatscounter_max,
nsstats_index, nsstat_values, nsstats_index, nsstat_values,
ISC_STATSDUMP_VERBOSE); ISC_STATSDUMP_VERBOSE);
if (result != ISC_R_SUCCESS) if (result != ISC_R_SUCCESS)
goto error; goto error;
result = dump_counters(server->zonestats, statsformat_xml, writer, result = dump_counters(server->zonestats, statsformat_xml, writer,
"zonestat", zonestats_xmldesc, "zonestat", zonestats_xmldesc,
dns_zonestatscounter_max, zonestats_index, dns_zonestatscounter_max, zonestats_index,
zonestat_values, ISC_STATSDUMP_VERBOSE); zonestat_values, ISC_STATSDUMP_VERBOSE);
if (result != ISC_R_SUCCESS) if (result != ISC_R_SUCCESS)
goto error; goto error;
/* /*
@@ -896,14 +896,14 @@ generatexml(ns_server_t *server, int *buflen, xmlChar **buf) {
"resstat", resstats_xmldesc, "resstat", resstats_xmldesc,
dns_resstatscounter_max, resstats_index, dns_resstatscounter_max, resstats_index,
resstat_values, 0); resstat_values, 0);
if (result != ISC_R_SUCCESS) if (result != ISC_R_SUCCESS)
goto error; goto error;
result = dump_counters(server->sockstats, statsformat_xml, writer, result = dump_counters(server->sockstats, statsformat_xml, writer,
"sockstat", sockstats_xmldesc, "sockstat", sockstats_xmldesc,
isc_sockstatscounter_max, sockstats_index, isc_sockstatscounter_max, sockstats_index,
sockstat_values, ISC_STATSDUMP_VERBOSE); sockstat_values, ISC_STATSDUMP_VERBOSE);
if (result != ISC_R_SUCCESS) if (result != ISC_R_SUCCESS)
goto error; goto error;
TRY0(xmlTextWriterEndElement(writer)); /* server */ TRY0(xmlTextWriterEndElement(writer)); /* server */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2004-2007, 2010 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1997-2001 Internet Software Consortium. * Copyright (C) 1997-2001 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: heap.c,v 1.38 2010/02/04 23:22:05 jinmei Exp $ */ /* $Id: heap.c,v 1.39 2010/02/04 23:49:13 tbox Exp $ */
/*! \file /*! \file
* Heap implementation of priority queues adapted from the following: * Heap implementation of priority queues adapted from the following:

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2006-2008 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2006-2008, 2010 Internet Systems Consortium, Inc. ("ISC")
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: httpd.c,v 1.17 2010/02/04 00:57:25 marka Exp $ */ /* $Id: httpd.c,v 1.18 2010/02/04 23:49:13 tbox Exp $ */
/*! \file */ /*! \file */