]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Tue, 30 Apr 2013 04:50:54 +0000 (04:50 +0000)
committerTinderbox User <tbox@isc.org>
Tue, 30 Apr 2013 04:50:54 +0000 (04:50 +0000)
bin/check/named-checkconf.c
bin/check/named-checkzone.c
bin/check/named-checkzone.docbook
bin/named/config.c
bin/tests/system/spf/clean.sh
lib/dns/include/dns/zone.h
lib/dns/zone.c
lib/isccfg/namedconf.c

index a8911a1865bfd66513425528f9f9a06be6b5eff9..48e1137e8a6a481e24e29ada90d3015572bcdcb4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2007, 2009-2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2007, 2009-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2002  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index e64cf347e2e7b73c0a3a7cefe184cf2903f0603e..25cfa58d3356a1f5151900b3e097cee186d8633e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 2aec66da32d8dcecf09938519ee97551215fa936..eafdbaf765584bd450a9bf3e8d7c6f2741fad9f0 100644 (file)
@@ -2,7 +2,7 @@
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
               [<!ENTITY mdash "&#8212;">]>
 <!--
- - Copyright (C) 2004-2007, 2009, 2012  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2004-2007, 2009, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
  - Copyright (C) 2000-2002  Internet Software Consortium.
  -
  - Permission to use, copy, modify, and/or distribute this software for any
@@ -38,6 +38,7 @@
       <year>2007</year>
       <year>2009</year>
       <year>2012</year>
+      <year>2013</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
     <copyright>
index 87a9f20f028db011ae0a328350e71f20ea5b9e51..1324c56f413e1584ed3906adc0acc7b5aa5d989e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2009, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2001-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 9c95122b661c610fa557130d4f3904c56560e37e..2e3a0eebc0a1d867d4de17a0980ccae7b2b804f6 100644 (file)
@@ -1,2 +1,16 @@
+# Copyright (C) 2013  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
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
+# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+
 rm -f ns1/named.run
 rm -f ns1/named.memstats
index 29a4b9807769de7dc3e4648ff35dde16d97926ed..d667ae430ab85a8b5b6e69e6a406388fdf19778c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 3b2b828cb89dfb9868faacea222464918a39c543..1a760d65e405b190de7940cabfcdbd48572f729a 100644 (file)
@@ -2145,19 +2145,19 @@ integrity_checks(dns_zone_t *zone, dns_db_t *db) {
                 * Check if there is a type TXT spf record without a type SPF
                 * RRset being present.
                 */
-               if (!DNS_ZONE_OPTION(zone, DNS_ZONEOPT_CHECKSPF))
+               if (!DNS_ZONE_OPTION(zone, DNS_ZONEOPT_CHECKSPF))
                        goto next;
                if (zone->rdclass != dns_rdataclass_in)
                        goto next;
                have_spf = have_txt = ISC_FALSE;
                result = dns_db_findrdataset(db, node, NULL, dns_rdatatype_spf,
-                                             0, 0, &rdataset, NULL);
+                                            0, 0, &rdataset, NULL);
                if (result == ISC_R_SUCCESS) {
                        dns_rdataset_disassociate(&rdataset);
                        have_spf = ISC_TRUE;
                }
                result = dns_db_findrdataset(db, node, NULL, dns_rdatatype_txt,
-                                             0, 0, &rdataset, NULL);
+                                            0, 0, &rdataset, NULL);
                if (result != ISC_R_SUCCESS)
                        goto notxt;
                result = dns_rdataset_first(&rdataset);
index 5303d20bccba7014a125f9dcb2826ce8cc9e41ff..fac26337535b008ad5311aa833ded8d021fdd2b5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008, 2010-2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2008, 2010-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2002, 2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any