]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Sat, 12 Mar 2011 04:56:42 +0000 (04:56 +0000)
committerAutomatic Updater <source@isc.org>
Sat, 12 Mar 2011 04:56:42 +0000 (04:56 +0000)
bin/named/update.c
bin/named/zoneconf.c
bin/tests/system/common/rndc.key
bin/tests/system/xfer/clean.sh
bin/tests/system/xfer/ns1/named.conf
bin/tests/system/xfer/ns3/named.conf
bin/tests/system/xfer/ns6/named.conf
bin/tests/system/xfer/ns7/named.conf
bin/tests/system/xfer/setup.sh
bin/tests/system/xfer/tests.sh

index 73e5f2b6449565598960118ecc0f4939f229adbb..418efb4b3be7c4b6eb6a73112c10f83c296cd097 100644 (file)
@@ -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: update.c,v 1.109.18.34 2011/03/11 12:58:38 marka Exp $ */
+/* $Id: update.c,v 1.109.18.35 2011/03/12 04:56:41 tbox Exp $ */
 
 #include <config.h>
 
index 7b61ba83297eb56f01a004b5519e435008105a34..94c32bf4afb1b32bd61abbc8f076c2f927d6573e 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (C) 2004-2006  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2006, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2003  Internet Software Consortium.
  *
- * 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.
  *
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zoneconf.c,v 1.110.18.24 2011/03/11 00:57:37 marka Exp $ */
+/* $Id: zoneconf.c,v 1.110.18.25 2011/03/12 04:56:41 tbox Exp $ */
 
 /*% */
 
@@ -60,7 +60,7 @@
 static isc_result_t
 configure_zone_acl(const cfg_obj_t *zconfig, const cfg_obj_t *vconfig,
                   const cfg_obj_t *config, const char *aclname,
-                  cfg_aclconfctx_t *actx, dns_zone_t *zone, 
+                  cfg_aclconfctx_t *actx, dns_zone_t *zone,
                   void (*setzacl)(dns_zone_t *, dns_acl_t *),
                   void (*clearzacl)(dns_zone_t *))
 {
@@ -264,11 +264,11 @@ strtoargvsub(isc_mem_t *mctx, char *s, unsigned int *argcp,
             char ***argvp, unsigned int n)
 {
        isc_result_t result;
-       
+
        /* Discard leading whitespace. */
        while (*s == ' ' || *s == '\t')
                s++;
-       
+
        if (*s == '\0') {
                /* We have reached the end of the string. */
                *argcp = n;
@@ -614,7 +614,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                obj = NULL;
                result = ns_config_get(maps, "check-sibling", &obj);
                INSIST(result == ISC_R_SUCCESS);
-               dns_zone_setoption(zone, DNS_ZONEOPT_CHECKSIBLING, 
+               dns_zone_setoption(zone, DNS_ZONEOPT_CHECKSIBLING,
                                   cfg_obj_asboolean(obj));
 
                obj = NULL;
@@ -633,7 +633,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                                          "allow-update", ac, zone,
                                          dns_zone_setupdateacl,
                                          dns_zone_clearupdateacl));
-               
+
                updateacl = dns_zone_getupdateacl(zone);
                if (updateacl != NULL  && dns_acl_isinsecure(updateacl))
                        isc_log_write(ns_g_lctx, DNS_LOGCATEGORY_SECURITY,
@@ -641,7 +641,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                                      "zone '%s' allows updates by IP "
                                      "address, which is insecure",
                                      zname);
-               
+
                RETERR(configure_zone_ssutable(zoptions, zone));
 
                obj = NULL;
@@ -689,7 +689,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                obj = NULL;
                result = ns_config_get(maps, "check-integrity", &obj);
                INSIST(obj != NULL);
-               dns_zone_setoption(zone, DNS_ZONEOPT_CHECKINTEGRITY, 
+               dns_zone_setoption(zone, DNS_ZONEOPT_CHECKINTEGRITY,
                                   cfg_obj_asboolean(obj));
 
                obj = NULL;
@@ -725,7 +725,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                obj = NULL;
                result = ns_config_get(maps, "update-check-ksk", &obj);
                INSIST(result == ISC_R_SUCCESS);
-               dns_zone_setoption(zone, DNS_ZONEOPT_UPDATECHECKKSK, 
+               dns_zone_setoption(zone, DNS_ZONEOPT_UPDATECHECKKSK,
                                   cfg_obj_asboolean(obj));
        }
 
@@ -739,7 +739,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                                          "allow-update", ac, zone,
                                          dns_zone_setupdateacl,
                                          dns_zone_clearupdateacl));
-               
+
                updateacl = dns_zone_getupdateacl(zone);
                if (updateacl != NULL  && dns_acl_isinsecure(updateacl))
                        isc_log_write(ns_g_lctx, DNS_LOGCATEGORY_SECURITY,
@@ -747,7 +747,7 @@ ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
                                      "zone '%s' allows updates by IP "
                                      "address, which is insecure",
                                      zname);
-               
+
                RETERR(configure_zone_ssutable(zoptions, zone));
 
                obj = NULL;
index 862f11993b5584078fa19183c56d4cdbaaa0d75d..3776deb697506b71d8f6648156ee0b37722fd01c 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2000, 2001  Internet Software Consortium.
+ * Copyright (C) 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
@@ -15,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rndc.key,v 1.2.8.2 2011/03/11 00:57:37 marka Exp $ */
+/* $Id: rndc.key,v 1.2.8.3 2011/03/12 04:56:41 tbox Exp $ */
 
 key rndc_key {
         secret "1234abcd8765";
index 1ab704360f867b1685cc88d754090286cf9ce028..ab774c6c5d805983db07cc8a548aba7a18e09bae 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2004, 2008  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2008, 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.11.18.3 2011/03/11 00:57:37 marka Exp $
+# $Id: clean.sh,v 1.11.18.4 2011/03/12 04:56:42 tbox Exp $
 
 #
 # Clean up after zone transfer tests.
index 87b822cbe5a379e0535fb3a1507993dcf44e8695..a5d0a749800e513cda5db621ce03fc475a8e62c3 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
- * 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.
  *
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named.conf,v 1.16.18.1 2011/03/11 00:57:38 marka Exp $ */
+/* $Id: named.conf,v 1.16.18.2 2011/03/12 04:56:42 tbox Exp $ */
 
 include "../../common/rndc.key";
 
index 4eaea3d0aa5f68428ac40eeeab75bda21926d2d4..8e20fdd4f9ef2cf61d14be028f93d10de202d05f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 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 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named.conf,v 1.18.18.4 2011/03/11 00:57:38 marka Exp $ */
+/* $Id: named.conf,v 1.18.18.5 2011/03/12 04:56:42 tbox Exp $ */
 
 controls { /* empty */ };
 
index d9365133aef88bebd0a7cc5105b5b59d55218a68..0f31029e6bc1d7518180132118f09af2d83d8024 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2000, 2001  Internet Software Consortium.
+ * Copyright (C) 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
@@ -15,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named.conf,v 1.2.8.2 2011/03/11 00:57:38 marka Exp $ */
+/* $Id: named.conf,v 1.2.8.3 2011/03/12 04:56:42 tbox Exp $ */
 
 include "../../common/rndc.key";
 
index 5c87b9b1ac7c72f217822e1dc7b39e016b60de09..c91f73521b88168bf045106f7d3843c0d78cccc1 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2000, 2001  Internet Software Consortium.
+ * Copyright (C) 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
@@ -15,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named.conf,v 1.2.8.2 2011/03/11 00:57:38 marka Exp $ */
+/* $Id: named.conf,v 1.2.8.3 2011/03/12 04:56:42 tbox Exp $ */
 
 include "../../common/rndc.key";
 
index c5deca5590943bf1d3fe8292536bb8461cfe35f0..c6c9c8547f24143777c9098c3be21abaf9593616 100644 (file)
@@ -1,9 +1,9 @@
 #!/bin/sh
 #
-# Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2011  Internet Systems Consortium, Inc. ("ISC")
 # Copyright (C) 2001, 2002  Internet Software Consortium.
 #
-# 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.
 #
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: setup.sh,v 1.3.18.1 2011/03/11 00:57:38 marka Exp $
+# $Id: setup.sh,v 1.3.18.2 2011/03/12 04:56:42 tbox Exp $
 
 sh clean.sh
 
index 429a5247753fa6f042feb4d1fecdbf29b57ff735..bc15b8c084afbd73ad809d7b4581c1e0c3c87be5 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2004, 2005, 2008  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2005, 2008, 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.27.18.5 2011/03/11 00:57:38 marka Exp $
+# $Id: tests.sh,v 1.27.18.6 2011/03/12 04:56:42 tbox Exp $
 
 SYSTEMTESTTOP=..
 . $SYSTEMTESTTOP/conf.sh