From 784a904bd06c7492361ed09a882d10c636b1291b Mon Sep 17 00:00:00 2001 From: Automatic Updater Date: Thu, 3 Feb 2011 12:18:12 +0000 Subject: [PATCH] update copyright notice --- bin/dnssec/dnssec-keyfromlabel.docbook | 5 +++-- bin/named/config.c | 4 ++-- bin/named/server.c | 4 ++-- bin/named/update.c | 8 ++++---- bin/rndc/rndc.c | 4 ++-- bin/tests/resolver/Makefile.in | 7 +++---- bin/tests/resolver/t_resolver.c | 20 ++++++++++---------- bin/tests/system/dns64/ns1/example.db | 4 ++-- bin/tests/system/nsupdate/clean.sh | 4 ++-- bin/tests/system/nsupdate/ns3/named.conf | 4 ++-- bin/tests/system/nsupdate/ns3/sign.sh | 4 ++-- bin/tests/system/nsupdate/tests.sh | 4 ++-- lib/dns/dispatch.c | 4 ++-- lib/dns/include/dns/resolver.h | 4 ++-- lib/dns/ncache.c | 4 ++-- lib/dns/rdataslab.c | 6 +++--- lib/dns/resolver.c | 8 ++++---- lib/isc/include/isc/task.h | 4 ++-- lib/isc/task.c | 4 ++-- lib/isc/timer.c | 4 ++-- lib/isc/unix/socket.c | 4 ++-- lib/isc/win32/include/isc/ipv6.h | 4 ++-- 22 files changed, 59 insertions(+), 59 deletions(-) diff --git a/bin/dnssec/dnssec-keyfromlabel.docbook b/bin/dnssec/dnssec-keyfromlabel.docbook index f9eb09ab35..7952a246b4 100644 --- a/bin/dnssec/dnssec-keyfromlabel.docbook +++ b/bin/dnssec/dnssec-keyfromlabel.docbook @@ -2,7 +2,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" []> - + February 8, 2008 @@ -39,6 +39,7 @@ 2008 2009 2010 + 2011 Internet Systems Consortium, Inc. ("ISC") diff --git a/bin/named/config.c b/bin/named/config.c index 549c099bc6..4fc64e60ef 100644 --- a/bin/named/config.c +++ b/bin/named/config.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2001-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: config.c,v 1.114 2011/02/03 05:41:52 marka Exp $ */ +/* $Id: config.c,v 1.115 2011/02/03 12:18:10 tbox Exp $ */ /*! \file */ diff --git a/bin/named/server.c b/bin/named/server.c index 210d79f037..90bfdd32ce 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.601 2011/02/03 05:41:52 marka Exp $ */ +/* $Id: server.c,v 1.602 2011/02/03 12:18:10 tbox Exp $ */ /*! \file */ @@ -2206,7 +2206,7 @@ configure_view(dns_view_t *view, cfg_parser_t* parser, if (lame_ttl > 1800) lame_ttl = 1800; dns_resolver_setlamettl(view->resolver, lame_ttl); - + /* * Set the resolver's query timeout. */ diff --git a/bin/named/update.c b/bin/named/update.c index 13456cdc6d..c8c962c00f 100644 --- a/bin/named/update.c +++ b/bin/named/update.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: update.c,v 1.187 2011/02/03 06:03:15 marka Exp $ */ +/* $Id: update.c,v 1.188 2011/02/03 12:18:10 tbox Exp $ */ #include @@ -3436,7 +3436,7 @@ add_signing_records(dns_db_t *db, dns_rdatatype_t privatetype, */ for (tuple = ISC_LIST_HEAD(diff->tuples); tuple != NULL; tuple = next) { - + next = ISC_LIST_NEXT(tuple, link); if (tuple->rdata.type != dns_rdatatype_dnskey) @@ -3500,7 +3500,7 @@ add_signing_records(dns_db_t *db, dns_rdatatype_t privatetype, tuple = ISC_LIST_HEAD(temp_diff.tuples)) { ISC_LIST_UNLINK(temp_diff.tuples, tuple, link); - ISC_LIST_APPEND(diff->tuples, tuple, link); + ISC_LIST_APPEND(diff->tuples, tuple, link); dns_rdata_tostruct(&tuple->rdata, &dnskey, NULL); if ((dnskey.flags & diff --git a/bin/rndc/rndc.c b/bin/rndc/rndc.c index 5c3c8ec2f1..c04cecb8ce 100644 --- a/bin/rndc/rndc.c +++ b/bin/rndc/rndc.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rndc.c,v 1.132 2011/02/03 11:46:17 marka Exp $ */ +/* $Id: rndc.c,v 1.133 2011/02/03 12:18:10 tbox Exp $ */ /*! \file */ diff --git a/bin/tests/resolver/Makefile.in b/bin/tests/resolver/Makefile.in index d97784195e..f3cfb4ac40 100644 --- a/bin/tests/resolver/Makefile.in +++ b/bin/tests/resolver/Makefile.in @@ -1,7 +1,6 @@ -# Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") -# Copyright (C) 1999-2002 Internet Software Consortium. +# Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC") # -# Permission to use, copy, modify, and 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 # copyright notice and this permission notice appear in all copies. # @@ -13,7 +12,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.2 2011/02/03 05:41:53 marka Exp $ +# $Id: Makefile.in,v 1.3 2011/02/03 12:18:10 tbox Exp $ srcdir = @srcdir@ VPATH = @srcdir@ diff --git a/bin/tests/resolver/t_resolver.c b/bin/tests/resolver/t_resolver.c index 07f6871e49..c9d4635e9f 100644 --- a/bin/tests/resolver/t_resolver.c +++ b/bin/tests/resolver/t_resolver.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: t_resolver.c,v 1.2 2011/02/03 05:41:53 marka Exp $ */ +/* $Id: t_resolver.c,v 1.3 2011/02/03 12:18:11 tbox Exp $ */ #include @@ -52,7 +52,7 @@ setup_create_dispatch_v4(void) { isc_sockaddr_t local_address; isc_sockaddr_any(&local_address); - + CHECK(dns_dispatch_getudp(dispatch_manager, socket_manager, task_manager, &local_address, 4096, 100, 100, 100, 500, 0, 0, /* unsigned int attributes, unsigned int mask, */ @@ -83,7 +83,7 @@ teardown(void) { static isc_result_t make_resolver(dns_resolver_t **resolverp) { isc_result_t result; - + result = dns_resolver_create(view, task_manager, 1, socket_manager, @@ -128,7 +128,7 @@ test_dns_resolver_gettimeout(void) { "The default timeout is returned from _gettimeout()"); setup(); CHECK(make_resolver(&resolver)); - + timeout = dns_resolver_gettimeout(resolver); t_info("The default timeout is %d second%s\n", timeout, (timeout == 1 ? "" : "s")); test_result = (timeout > 0) ? T_PASS : T_FAIL; @@ -149,7 +149,7 @@ test_dns_resolver_settimeout(void) { "_settimeout() can change the timeout to a non-default"); setup(); CHECK(make_resolver(&resolver)); - + default_timeout = dns_resolver_gettimeout(resolver); t_info("The default timeout is %d second%s\n", default_timeout, (default_timeout == 1 ? "" : "s")); @@ -162,7 +162,7 @@ test_dns_resolver_settimeout(void) { destroy_resolver(&resolver); teardown(); - + t_result(test_result); } @@ -177,7 +177,7 @@ test_dns_resolver_settimeout_to_default(void) { " by specifying 0 as the timeout."); setup(); CHECK(make_resolver(&resolver)); - + default_timeout = dns_resolver_gettimeout(resolver); t_info("The default timeout is %d second%s\n", default_timeout, (default_timeout == 1 ? "" : "s")); @@ -193,7 +193,7 @@ test_dns_resolver_settimeout_to_default(void) { destroy_resolver(&resolver); teardown(); - + t_result(test_result); } @@ -207,7 +207,7 @@ test_dns_resolver_settimeout_over_maximum(void) { "_settimeout() cannot set the value larger than the maximum."); setup(); CHECK(make_resolver(&resolver)); - + dns_resolver_settimeout(resolver, 4000000); timeout = dns_resolver_gettimeout(resolver); t_info("The new timeout is %d second%s\n", timeout, @@ -217,7 +217,7 @@ test_dns_resolver_settimeout_over_maximum(void) { destroy_resolver(&resolver); teardown(); - + t_result(test_result); } diff --git a/bin/tests/system/dns64/ns1/example.db b/bin/tests/system/dns64/ns1/example.db index 19c896ffea..44c5639631 100644 --- a/bin/tests/system/dns64/ns1/example.db +++ b/bin/tests/system/dns64/ns1/example.db @@ -1,4 +1,4 @@ -; Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC") +; Copyright (C) 2010, 2011 Internet Systems Consortium, Inc. ("ISC") ; ; Permission to use, copy, modify, and/or distribute this software for any ; 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 ; PERFORMANCE OF THIS SOFTWARE. -; $Id: example.db,v 1.4 2011/02/03 07:35:55 marka Exp $ +; $Id: example.db,v 1.5 2011/02/03 12:18:11 tbox Exp $ $TTL 3600 @ SOA ns1 marka.isc.org. 0 0 0 0 1200 diff --git a/bin/tests/system/nsupdate/clean.sh b/bin/tests/system/nsupdate/clean.sh index 71df210377..697877d749 100644 --- a/bin/tests/system/nsupdate/clean.sh +++ b/bin/tests/system/nsupdate/clean.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2004, 2007, 2009, 2010 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2007, 2009-2011 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000, 2001 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: clean.sh,v 1.21 2011/02/03 06:03:15 marka Exp $ +# $Id: clean.sh,v 1.22 2011/02/03 12:18:11 tbox Exp $ # # Clean up after zone transfer tests. diff --git a/bin/tests/system/nsupdate/ns3/named.conf b/bin/tests/system/nsupdate/ns3/named.conf index 66f83078e3..4b43efe4f2 100644 --- a/bin/tests/system/nsupdate/ns3/named.conf +++ b/bin/tests/system/nsupdate/ns3/named.conf @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2010, 2011 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: named.conf,v 1.4 2011/02/03 06:03:15 marka Exp $ */ +/* $Id: named.conf,v 1.5 2011/02/03 12:18:11 tbox Exp $ */ // NS1 diff --git a/bin/tests/system/nsupdate/ns3/sign.sh b/bin/tests/system/nsupdate/ns3/sign.sh index cfab579fdb..994d6d8cdd 100644 --- a/bin/tests/system/nsupdate/ns3/sign.sh +++ b/bin/tests/system/nsupdate/ns3/sign.sh @@ -1,6 +1,6 @@ #!/bin/sh -e # -# Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2010, 2011 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -14,7 +14,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: sign.sh,v 1.3 2011/02/03 06:03:15 marka Exp $ +# $Id: sign.sh,v 1.4 2011/02/03 12:18:11 tbox Exp $ SYSTEMTESTTOP=../.. . $SYSTEMTESTTOP/conf.sh diff --git a/bin/tests/system/nsupdate/tests.sh b/bin/tests/system/nsupdate/tests.sh index f0ff664aeb..03f0257c0f 100644 --- a/bin/tests/system/nsupdate/tests.sh +++ b/bin/tests/system/nsupdate/tests.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2004, 2007, 2009, 2010 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2007, 2009-2011 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000, 2001 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: tests.sh,v 1.33 2011/02/03 06:03:15 marka Exp $ +# $Id: tests.sh,v 1.34 2011/02/03 12:18:11 tbox Exp $ SYSTEMTESTTOP=.. . $SYSTEMTESTTOP/conf.sh diff --git a/lib/dns/dispatch.c b/lib/dns/dispatch.c index 5777257874..961261507e 100644 --- a/lib/dns/dispatch.c +++ b/lib/dns/dispatch.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2009, 2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dispatch.c,v 1.169 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: dispatch.c,v 1.170 2011/02/03 12:18:11 tbox Exp $ */ /*! \file */ diff --git a/lib/dns/include/dns/resolver.h b/lib/dns/include/dns/resolver.h index 14280d266b..cbf63dff5e 100644 --- a/lib/dns/include/dns/resolver.h +++ b/lib/dns/include/dns/resolver.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2001, 2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: resolver.h,v 1.68 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: resolver.h,v 1.69 2011/02/03 12:18:11 tbox Exp $ */ #ifndef DNS_RESOLVER_H #define DNS_RESOLVER_H 1 diff --git a/lib/dns/ncache.c b/lib/dns/ncache.c index 5a326294f1..21f8bc058e 100644 --- a/lib/dns/ncache.c +++ b/lib/dns/ncache.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004, 2005, 2007, 2008, 2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2008, 2010, 2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: ncache.c,v 1.51 2011/02/03 07:35:56 marka Exp $ */ +/* $Id: ncache.c,v 1.52 2011/02/03 12:18:11 tbox Exp $ */ /*! \file */ diff --git a/lib/dns/rdataslab.c b/lib/dns/rdataslab.c index d15b484676..f984b38018 100644 --- a/lib/dns/rdataslab.c +++ b/lib/dns/rdataslab.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rdataslab.c,v 1.53 2011/02/03 07:35:56 marka Exp $ */ +/* $Id: rdataslab.c,v 1.54 2011/02/03 12:18:11 tbox Exp $ */ /*! \file */ @@ -150,7 +150,7 @@ dns_rdataslab_fromrdataset(dns_rdataset_t *rdataset, isc_mem_t *mctx, if (nalloc > 0xffff) return (ISC_R_NOSPACE); - + if (nalloc != 0) { x = isc_mem_get(mctx, nalloc * sizeof(struct xrdata)); if (x == NULL) diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index a3ddc876d2..6747f97b27 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: resolver.c,v 1.429 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: resolver.c,v 1.430 2011/02/03 12:18:11 tbox Exp $ */ /*! \file */ @@ -8735,18 +8735,18 @@ dns_resolver_getoptions(dns_resolver_t *resolver) { unsigned int dns_resolver_gettimeout(dns_resolver_t *resolver) { REQUIRE(VALID_RESOLVER(resolver)); - + return (resolver->query_timeout); } void dns_resolver_settimeout(dns_resolver_t *resolver, unsigned int seconds) { REQUIRE(VALID_RESOLVER(resolver)); - + if (seconds == 0) seconds = DEFAULT_QUERY_TIMEOUT; if (seconds > MAXIMUM_QUERY_TIMEOUT) seconds = MAXIMUM_QUERY_TIMEOUT; - + resolver->query_timeout = seconds; } diff --git a/lib/isc/include/isc/task.h b/lib/isc/include/isc/task.h index f6371de40e..de84ea181f 100644 --- a/lib/isc/include/isc/task.h +++ b/lib/isc/include/isc/task.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2007, 2009, 2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2007, 2009-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1998-2001, 2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: task.h,v 1.70 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: task.h,v 1.71 2011/02/03 12:18:12 tbox Exp $ */ #ifndef ISC_TASK_H #define ISC_TASK_H 1 diff --git a/lib/isc/task.c b/lib/isc/task.c index 9063eb79db..7cf5d596ad 100644 --- a/lib/isc/task.c +++ b/lib/isc/task.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1998-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: task.c,v 1.116 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: task.c,v 1.117 2011/02/03 12:18:12 tbox Exp $ */ /*! \file * \author Principal Author: Bob Halley diff --git a/lib/isc/timer.c b/lib/isc/timer.c index 1cbf0d35df..2d8710eaf8 100644 --- a/lib/isc/timer.c +++ b/lib/isc/timer.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007-2009, 2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1998-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: timer.c,v 1.96 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: timer.c,v 1.97 2011/02/03 12:18:12 tbox Exp $ */ /*! \file */ diff --git a/lib/isc/unix/socket.c b/lib/isc/unix/socket.c index d2b067b04e..5d73fa11a4 100644 --- a/lib/isc/unix/socket.c +++ b/lib/isc/unix/socket.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1998-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: socket.c,v 1.334 2011/02/03 05:41:54 marka Exp $ */ +/* $Id: socket.c,v 1.335 2011/02/03 12:18:12 tbox Exp $ */ /*! \file */ diff --git a/lib/isc/win32/include/isc/ipv6.h b/lib/isc/win32/include/isc/ipv6.h index a8ed8a48c1..b9e5c121e0 100644 --- a/lib/isc/win32/include/isc/ipv6.h +++ b/lib/isc/win32/include/isc/ipv6.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2011 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: ipv6.h,v 1.20 2011/02/03 08:13:51 marka Exp $ */ +/* $Id: ipv6.h,v 1.21 2011/02/03 12:18:12 tbox Exp $ */ #ifndef ISC_IPV6_H #define ISC_IPV6_H 1