]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Fri, 4 Dec 2009 22:06:37 +0000 (22:06 +0000)
committerAutomatic Updater <source@isc.org>
Fri, 4 Dec 2009 22:06:37 +0000 (22:06 +0000)
56 files changed:
bin/check/named-checkzone.c
bin/dnssec/dnssec-signzone.c
bin/tests/system/zonechecks/tests.sh
lib/dns/gen.c
lib/dns/include/dns/zone.h
lib/dns/rdata/any_255/tsig_250.c
lib/dns/rdata/ch_3/a_1.c
lib/dns/rdata/generic/afsdb_18.c
lib/dns/rdata/generic/cert_37.c
lib/dns/rdata/generic/cname_5.c
lib/dns/rdata/generic/dlv_32769.c
lib/dns/rdata/generic/dname_39.c
lib/dns/rdata/generic/dnskey_48.c
lib/dns/rdata/generic/ds_43.c
lib/dns/rdata/generic/gpos_27.c
lib/dns/rdata/generic/hinfo_13.c
lib/dns/rdata/generic/hip_55.c
lib/dns/rdata/generic/ipseckey_45.c
lib/dns/rdata/generic/isdn_20.c
lib/dns/rdata/generic/key_25.c
lib/dns/rdata/generic/mb_7.c
lib/dns/rdata/generic/md_3.c
lib/dns/rdata/generic/mf_4.c
lib/dns/rdata/generic/mg_8.c
lib/dns/rdata/generic/minfo_14.c
lib/dns/rdata/generic/mr_9.c
lib/dns/rdata/generic/mx_15.c
lib/dns/rdata/generic/ns_2.c
lib/dns/rdata/generic/nsec_47.c
lib/dns/rdata/generic/null_10.c
lib/dns/rdata/generic/nxt_30.c
lib/dns/rdata/generic/opt_41.c
lib/dns/rdata/generic/proforma.c
lib/dns/rdata/generic/ptr_12.c
lib/dns/rdata/generic/rp_17.c
lib/dns/rdata/generic/rrsig_46.c
lib/dns/rdata/generic/rt_21.c
lib/dns/rdata/generic/sig_24.c
lib/dns/rdata/generic/spf_99.c
lib/dns/rdata/generic/sshfp_44.c
lib/dns/rdata/generic/tkey_249.c
lib/dns/rdata/generic/txt_16.c
lib/dns/rdata/generic/unspec_103.c
lib/dns/rdata/generic/x25_19.c
lib/dns/rdata/hs_4/a_1.c
lib/dns/rdata/in_1/a6_38.c
lib/dns/rdata/in_1/a_1.c
lib/dns/rdata/in_1/aaaa_28.c
lib/dns/rdata/in_1/apl_42.c
lib/dns/rdata/in_1/dhcid_49.c
lib/dns/rdata/in_1/kx_36.c
lib/dns/rdata/in_1/nsap-ptr_23.c
lib/dns/rdata/in_1/nsap_22.c
lib/dns/rdata/in_1/px_26.c
lib/dns/rdata/in_1/srv_33.c
lib/dns/zone.c

index 01185b04d7ff31211d2cc80fbfc9d1f1456adbe9..113934eee1d3c97c53a56f22f29feb409e9d0301 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named-checkzone.c,v 1.58 2009/12/04 21:09:32 marka Exp $ */
+/* $Id: named-checkzone.c,v 1.59 2009/12/04 22:06:37 tbox Exp $ */
 
 /*! \file */
 
@@ -148,7 +148,7 @@ main(int argc, char **argv) {
                                 DNS_ZONEOPT_CHECKNAMES |
                                 DNS_ZONEOPT_CHECKNAMESFAIL |
                                 DNS_ZONEOPT_CHECKWILDCARD);
-       } else 
+       } else
                zone_options |= DNS_ZONEOPT_CHECKDUPRR;
 
 #define ARGCMP(X) (strcmp(isc_commandline_argument, X) == 0)
index cce2747d3188bfc6e72db0f23e7a00e2cee2e1f7..1d327a10fe3681832544bfd10756c0c87336647f 100644 (file)
@@ -29,7 +29,7 @@
  * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dnssec-signzone.c,v 1.257 2009/12/04 21:09:32 marka Exp $ */
+/* $Id: dnssec-signzone.c,v 1.258 2009/12/04 22:06:37 tbox Exp $ */
 
 /*! \file */
 
@@ -2353,29 +2353,29 @@ rrset_remove_duplicates(dns_name_t *name, dns_rdataset_t *rdataset,
                        dns_diff_t *diff)
 {
        dns_difftuple_t *tuple = NULL;
-        isc_result_t result;
-        unsigned int count1 = 0;
+       isc_result_t result;
+       unsigned int count1 = 0;
        dns_rdataset_t tmprdataset;
-        dns_rdataset_init(&tmprdataset);
-        for (result = dns_rdataset_first(rdataset);
-             result == ISC_R_SUCCESS;
-             result = dns_rdataset_next(rdataset)) {
-                dns_rdata_t rdata1 = DNS_RDATA_INIT;
-                unsigned int count2 = 0;
-                count1++;
-                dns_rdataset_current(rdataset, &rdata1);
-                dns_rdataset_clone(rdataset, &tmprdataset);
-                for (result = dns_rdataset_first(&tmprdataset);
-                     result == ISC_R_SUCCESS;
-                     result = dns_rdataset_next(&tmprdataset)) {
-                        dns_rdata_t rdata2 = DNS_RDATA_INIT;
-                        count2++;
-                        if (count1 >= count2)
-                                continue;
-                        dns_rdataset_current(&tmprdataset, &rdata2);
-                        if (dns_rdata_casecompare(&rdata1, &rdata2) == 0) {
+
+       dns_rdataset_init(&tmprdataset);
+       for (result = dns_rdataset_first(rdataset);
+            result == ISC_R_SUCCESS;
+            result = dns_rdataset_next(rdataset)) {
+               dns_rdata_t rdata1 = DNS_RDATA_INIT;
+               unsigned int count2 = 0;
+
+               count1++;
+               dns_rdataset_current(rdataset, &rdata1);
+               dns_rdataset_clone(rdataset, &tmprdataset);
+               for (result = dns_rdataset_first(&tmprdataset);
+                    result == ISC_R_SUCCESS;
+                    result = dns_rdataset_next(&tmprdataset)) {
+                       dns_rdata_t rdata2 = DNS_RDATA_INIT;
+                       count2++;
+                       if (count1 >= count2)
+                               continue;
+                       dns_rdataset_current(&tmprdataset, &rdata2);
+                       if (dns_rdata_casecompare(&rdata1, &rdata2) == 0) {
                                result = dns_difftuple_create(mctx,
                                                              DNS_DIFFOP_DEL,
                                                              name,
@@ -2383,10 +2383,10 @@ rrset_remove_duplicates(dns_name_t *name, dns_rdataset_t *rdataset,
                                                              &rdata2, &tuple);
                                check_result(result, "dns_difftuple_create");
                                dns_diff_append(diff, &tuple);
-                        }
-                }
-                dns_rdataset_disassociate(&tmprdataset);
-        }
+                       }
+               }
+               dns_rdataset_disassociate(&tmprdataset);
+       }
 }
 
 static void
@@ -2399,7 +2399,7 @@ remove_duplicates(void) {
        dns_rdataset_t rdataset;
        dns_fixedname_t fname;
        dns_name_t *name;
-       
+
        dns_diff_init(mctx, &diff);
        dns_fixedname_init(&fname);
        name = dns_fixedname_name(&fname);
index 0875b723509f1f80c4fe6830d0060f9415e2c15a..8c09abb91af7873de0b35ad9912e5476ec53f4dc 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009  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: tests.sh,v 1.5 2009/12/04 03:33:15 marka Exp $
+# $Id: tests.sh,v 1.6 2009/12/04 22:06:37 tbox Exp $
 
 SYSTEMTESTTOP=..
 . $SYSTEMTESTTOP/conf.sh
index 5d6d9b90111ca62a6b75cb89fe9421ab424e7c20..a0b4df37593f853869ed3dd1975d992e1356f69c 100644 (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) 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: gen.c,v 1.84 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: gen.c,v 1.85 2009/12/04 22:06:37 tbox Exp $ */
 
 /*! \file */
 
index 6a440e5e2e7b4fb9d0f1c48cb923b479535c7e74..ed7948994ae54c40a50389b9f27ac87ae9ed6975 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.h,v 1.173 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: zone.h,v 1.174 2009/12/04 22:06:37 tbox Exp $ */
 
 #ifndef DNS_ZONE_H
 #define DNS_ZONE_H 1
@@ -1786,7 +1786,7 @@ dns_zone_rekey(dns_zone_t *zone);
 
 isc_result_t
 dns_zone_nscheck(dns_zone_t *zone, dns_db_t *db, dns_dbversion_t *version,
-                 unsigned int *errors);
+                unsigned int *errors);
 /*%
  * Check if the name servers for the zone are sane (have address, don't
  * refer to CNAMEs/DNAMEs.  The number of constiancy errors detected in
index 26be4b45b0bf60f0271d8415b024d15acbe7930e..3cc54a8b0049bf678526f31fecf4137b14aab5fc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: tsig_250.c,v 1.64 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: tsig_250.c,v 1.65 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 13:39:43 PST 2000 by gson */
 
index 7af6a70a3213797eb25a07c460b691c84a34515c..e3f98106514d1bb95d560bc179957814f1fbfe81 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2005, 2007, 2009  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: a_1.c,v 1.7 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: a_1.c,v 1.8 2009/12/04 22:06:37 tbox Exp $ */
 
 /* by Bjorn.Victor@it.uu.se, 2005-05-07 */
 /* Based on generic/soa_6.c and generic/mx_15.c */
@@ -107,7 +107,7 @@ fromwire_ch_a(ARGS_FROMWIRE) {
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
        dns_name_init(&name, NULL);
-       
+
        RETERR(dns_name_fromwire(&name, source, dctx, options, target));
 
        isc_buffer_activeregion(source, &sregion);
@@ -205,7 +205,7 @@ fromstruct_ch_a(ARGS_FROMSTRUCT) {
 
        dns_name_toregion(&a->ch_addr_dom, &region);
        RETERR(isc_buffer_copyregion(target, &region));
-       
+
        return (uint16_tobuffer(ntohs(a->ch_addr), target));
 }
 
index 898a09e4909c9d92b9f25fadc9540fad9ad51345..279f86c677d779f3dd359a5985acd602436c26f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: afsdb_18.c,v 1.48 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: afsdb_18.c,v 1.49 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 14:59:00 PST 2000 by explorer */
 
index f84bc312017037f3144dbe640e06dfdc8af92a51..dfe090c96a1cedfc6a2cc7ab262499c6cd77ec89 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: cert_37.c,v 1.51 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: cert_37.c,v 1.52 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 21:14:32 EST 2000 by tale */
 
index 642998511579ba5244331321deb0e5fe69a8e9dd..45a48a897fc027e877ed19a75aaf120626aff514 100644 (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) 1998-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: cname_5.c,v 1.48 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: cname_5.c,v 1.49 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 16:48:45 PST 2000 by brister */
 
index d7516edb77f07db133e2e07e859a01799b7b45a9..d222922078f9bc27842bef1521ae80efac858929 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2009  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: dlv_32769.c,v 1.7 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: dlv_32769.c,v 1.8 2009/12/04 22:06:37 tbox Exp $ */
 
 /* draft-ietf-dnsext-delegation-signer-05.txt */
 
@@ -144,7 +144,7 @@ fromwire_dlv(ARGS_FROMWIRE) {
        UNUSED(options);
 
        isc_buffer_activeregion(source, &sr);
+
        /*
         * Check digest lengths if we know them.
         */
@@ -164,7 +164,7 @@ fromwire_dlv(ARGS_FROMWIRE) {
                sr.length = 4 + ISC_SHA1_DIGESTLENGTH;
        else if (sr.base[3] == DNS_DSDIGEST_SHA256)
                sr.length = 4 + ISC_SHA256_DIGESTLENGTH;
+
        isc_buffer_forward(source, sr.length);
        return (mem_tobuffer(target, sr.base, sr.length));
 }
index ad0d0b956f5cdb4484eb790335da1d6d8bd0b352..d899494f53689a485bb6b05c8de47304168a7b9d 100644 (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-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: dname_39.c,v 1.39 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: dname_39.c,v 1.40 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 16:52:38 PST 2000 by explorer */
 
index 99b0e640944bf445c1b39af5998f4fb4065bf0b5..e20af03371dcfff42eb5c35cbd6f6f3adad9bfaf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: dnskey_48.c,v 1.9 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: dnskey_48.c,v 1.10 2009/12/04 22:06:37 tbox Exp $ */
 
 /*
  * Reviewed: Wed Mar 15 16:47:10 PST 2000 by halley.
@@ -339,7 +339,7 @@ checknames_dnskey(ARGS_CHECKNAMES) {
 
 static inline int
 casecompare_dnskey(ARGS_COMPARE) {
-       
+
        /*
         * Treat ALG 253 (private DNS) subtype name case sensistively.
         */
index 12e74224aaba9a2873c1efcaf8a6ef4a5ae57e73..c592093d1c61059daa829d955b123f3f79254bd6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: ds_43.c,v 1.13 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: ds_43.c,v 1.14 2009/12/04 22:06:37 tbox Exp $ */
 
 /* draft-ietf-dnsext-delegation-signer-05.txt */
 
index 4299a4b22e308274e81866e96a16442686453e96..ce71822b823774803110182726b3154e8bcdc596 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: gpos_27.c,v 1.42 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: gpos_27.c,v 1.43 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 16:48:45 PST 2000 by brister */
 
index c33111d94cf3a526dd05da6b8634bcfe76373f76..10b4fec79deaffc16f818dd922cd29feba951b1d 100644 (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) 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: hinfo_13.c,v 1.45 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: hinfo_13.c,v 1.46 2009/12/04 22:06:37 tbox Exp $ */
 
 /*
  * Reviewed: Wed Mar 15 16:47:10 PST 2000 by halley.
index 9c9d743a74118d043f5ed737ca79cfe0d21526fd..cc7ded316aa5cc1eb96dc043e5f2ff22622fba37 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: hip_55.c,v 1.5 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: hip_55.c,v 1.6 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: TBC */
 
@@ -451,49 +451,49 @@ dns_rdata_hip_current(dns_rdata_hip_t *hip, dns_name_t *name) {
 
 static inline int
 casecompare_hip(ARGS_COMPARE) {
-        isc_region_t r1;
-        isc_region_t r2;
-        dns_name_t name1;
-        dns_name_t name2;
-        int order;
+       isc_region_t r1;
+       isc_region_t r2;
+       dns_name_t name1;
+       dns_name_t name2;
+       int order;
        isc_uint8_t hit_len;
        isc_uint16_t key_len;
-        REQUIRE(rdata1->type == rdata2->type);
-        REQUIRE(rdata1->rdclass == rdata2->rdclass);
-        REQUIRE(rdata1->type == 55);
-        REQUIRE(rdata1->length != 0);
-        REQUIRE(rdata2->length != 0);
-
-        dns_rdata_toregion(rdata1, &r1);
-        dns_rdata_toregion(rdata2, &r2);
-
-        INSIST(r1.length > 4);
-        INSIST(r2.length > 4);
-        r1.length = 4;
-        r2.length = 4;
-        order = isc_region_compare(&r1, &r2);
-        if (order != 0)
-                return (order);
-
-        hit_len = uint8_fromregion(&r1);
-        isc_region_consume(&r1, 2);         /* hit length + algorithm */
-        key_len = uint16_fromregion(&r1);
-
-        dns_rdata_toregion(rdata1, &r1);
-        dns_rdata_toregion(rdata2, &r2);
-        isc_region_consume(&r1, 4);
-        isc_region_consume(&r2, 4);
-        INSIST(r1.length >= (unsigned) (hit_len + key_len));
-        INSIST(r2.length >= (unsigned) (hit_len + key_len));
-        order = isc_region_compare(&r1, &r2);
-        if (order != 0)
-                return (order);
-        isc_region_consume(&r1, hit_len + key_len);
-        isc_region_consume(&r2, hit_len + key_len);
-
-        dns_name_init(&name1, NULL);
-        dns_name_init(&name2, NULL);
+
+       REQUIRE(rdata1->type == rdata2->type);
+       REQUIRE(rdata1->rdclass == rdata2->rdclass);
+       REQUIRE(rdata1->type == 55);
+       REQUIRE(rdata1->length != 0);
+       REQUIRE(rdata2->length != 0);
+
+       dns_rdata_toregion(rdata1, &r1);
+       dns_rdata_toregion(rdata2, &r2);
+
+       INSIST(r1.length > 4);
+       INSIST(r2.length > 4);
+       r1.length = 4;
+       r2.length = 4;
+       order = isc_region_compare(&r1, &r2);
+       if (order != 0)
+               return (order);
+
+       hit_len = uint8_fromregion(&r1);
+       isc_region_consume(&r1, 2);         /* hit length + algorithm */
+       key_len = uint16_fromregion(&r1);
+
+       dns_rdata_toregion(rdata1, &r1);
+       dns_rdata_toregion(rdata2, &r2);
+       isc_region_consume(&r1, 4);
+       isc_region_consume(&r2, 4);
+       INSIST(r1.length >= (unsigned) (hit_len + key_len));
+       INSIST(r2.length >= (unsigned) (hit_len + key_len));
+       order = isc_region_compare(&r1, &r2);
+       if (order != 0)
+               return (order);
+       isc_region_consume(&r1, hit_len + key_len);
+       isc_region_consume(&r2, hit_len + key_len);
+
+       dns_name_init(&name1, NULL);
+       dns_name_init(&name2, NULL);
        while (r1.length != 0 && r2.length != 0) {
                dns_name_fromregion(&name1, &r1);
                dns_name_fromregion(&name2, &r2);
@@ -504,7 +504,7 @@ casecompare_hip(ARGS_COMPARE) {
                isc_region_consume(&r1, name_length(&name1));
                isc_region_consume(&r2, name_length(&name2));
        }
-        return (isc_region_compare(&r1, &r2));
+       return (isc_region_compare(&r1, &r2));
 }
 
 #endif /* RDATA_GENERIC_HIP_5_C */
index cfb427dcbf4eab7049d1b9357f6674dedb05740b..072f13d6f2e3a1cd5f0a5c21354c728fd2b804b0 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: ipseckey_45.c,v 1.8 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: ipseckey_45.c,v 1.9 2009/12/04 22:06:37 tbox Exp $ */
 
 #ifndef RDATA_GENERIC_IPSECKEY_45_C
 #define RDATA_GENERIC_IPSECKEY_45_C
@@ -480,14 +480,14 @@ casecompare_ipseckey(ARGS_COMPARE) {
        if (memcmp(region1.base, region2.base, 3) != 0 || region1.base[1] != 3)
                return (isc_region_compare(&region1, &region2));
 
-        dns_name_init(&name1, NULL);
-        dns_name_init(&name2, NULL);
+       dns_name_init(&name1, NULL);
+       dns_name_init(&name2, NULL);
 
-        isc_region_consume(&region1, 3);
-        isc_region_consume(&region2, 3);
-                                              
-        dns_name_fromregion(&name1, &region1);
-        dns_name_fromregion(&name2, &region2);
+       isc_region_consume(&region1, 3);
+       isc_region_consume(&region2, 3);
+
+       dns_name_fromregion(&name1, &region1);
+       dns_name_fromregion(&name2, &region2);
 
        order = dns_name_rdatacompare(&name1, &name2);
        if (order != 0)
index d88355de1f7f3d80dc9d22907b6385a7d501ec22..5aac73f3713f9b996da4f3e8602cfe7884e6596a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: isdn_20.c,v 1.39 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: isdn_20.c,v 1.40 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 16:53:11 PST 2000 by bwelling */
 
index c2ecc563611b138046c71bb4aed9fa11505c68bb..7ae8e4eb3adc05c645cb1c8647c5f8a4c69ca1f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: key_25.c,v 1.52 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: key_25.c,v 1.53 2009/12/04 22:06:37 tbox Exp $ */
 
 /*
  * Reviewed: Wed Mar 15 16:47:10 PST 2000 by halley.
@@ -114,7 +114,7 @@ totext_key(ARGS_TOTEXT) {
                dns_name_format(&name, namebuf, sizeof(namebuf));
        } else
                namebuf[0] = 0;
+
        /* key */
        if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
                RETERR(str_totext(" (", target));
index 25b8b751b280f70cd46c66125c95fb1683114af1..8e588fc7b8a5e746d15f05ced1868eed7480a912 100644 (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) 1998-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: mb_7.c,v 1.46 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: mb_7.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 17:31:26 PST 2000 by bwelling */
 
@@ -69,7 +69,7 @@ totext_mb(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_mb(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 7);
 
@@ -78,8 +78,8 @@ fromwire_mb(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 3631b7863c82cfb194bd71bf537499ecb6bb6175..e00f1f6ca368c5290dd0bfc50660e7c520321f0d 100644 (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) 1998-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: md_3.c,v 1.48 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: md_3.c,v 1.49 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 17:48:20 PST 2000 by bwelling */
 
@@ -69,7 +69,7 @@ totext_md(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_md(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 3);
 
@@ -78,8 +78,8 @@ fromwire_md(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 02b6896b332a116f5d9b5ca3d05193abd185f9db..a85809aef223d5a0f2e7039c09d1ec4f8ea17591 100644 (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) 1998-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: mf_4.c,v 1.46 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: mf_4.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 17:47:33 PST 2000 by brister */
 
@@ -69,7 +69,7 @@ totext_mf(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_mf(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 4);
 
@@ -78,8 +78,8 @@ fromwire_mf(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 7a3752d0d8942bebb7456371134aec8d99c721b9..d0af188e737376ed6a1969ed32221530e0781325 100644 (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) 1998-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: mg_8.c,v 1.44 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: mg_8.c,v 1.45 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 17:49:21 PST 2000 by brister */
 
@@ -69,7 +69,7 @@ totext_mg(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_mg(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 8);
 
@@ -78,8 +78,8 @@ fromwire_mg(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 9ed7457f4f4321e84d7ce637c466aa7ed058ab72..9e2214c98aa3c6bbacb975abc4bf099b0628c375 100644 (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) 1998-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: minfo_14.c,v 1.46 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: minfo_14.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 17:45:32 PST 2000 by brister */
 
@@ -93,8 +93,8 @@ totext_minfo(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_minfo(ARGS_FROMWIRE) {
-        dns_name_t rmail;
-        dns_name_t email;
+       dns_name_t rmail;
+       dns_name_t email;
 
        REQUIRE(type == 14);
 
@@ -103,11 +103,11 @@ fromwire_minfo(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&rmail, NULL);
-        dns_name_init(&email, NULL);
+       dns_name_init(&rmail, NULL);
+       dns_name_init(&email, NULL);
 
-        RETERR(dns_name_fromwire(&rmail, source, dctx, options, target));
-        return (dns_name_fromwire(&email, source, dctx, options, target));
+       RETERR(dns_name_fromwire(&rmail, source, dctx, options, target));
+       return (dns_name_fromwire(&email, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 1770a73cd93c1ce92b748694c9a6c024b0280223..590235d961bb4f76d2dc9a2d54d43dd7e5fe5ebd 100644 (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) 1998-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: mr_9.c,v 1.43 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: mr_9.c,v 1.44 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 21:30:35 EST 2000 by tale */
 
@@ -69,7 +69,7 @@ totext_mr(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_mr(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 9);
 
@@ -78,8 +78,8 @@ fromwire_mr(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 8bbe5caf76e07c813ab93a488cc15334f408d727..fd09e92535f552b04c066d4229529f2b3911878d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: mx_15.c,v 1.57 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: mx_15.c,v 1.58 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 18:05:46 PST 2000 by brister */
 
@@ -120,7 +120,7 @@ totext_mx(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_mx(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
        isc_region_t sregion;
 
        REQUIRE(type == 15);
@@ -130,7 +130,7 @@ fromwire_mx(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
+       dns_name_init(&name, NULL);
 
        isc_buffer_activeregion(source, &sregion);
        if (sregion.length < 2)
index b0094921b407c2b2e50235c9c7919669ae0d2708..5db81e7cb39059f98766ce939c5d29cdb1f38f70 100644 (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) 1998-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: ns_2.c,v 1.47 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: ns_2.c,v 1.48 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Wed Mar 15 18:15:00 PST 2000 by bwelling */
 
@@ -77,7 +77,7 @@ totext_ns(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_ns(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 2);
 
@@ -86,8 +86,8 @@ fromwire_ns(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index 6100eb92c718bdcb8946d9a438abbe21fa07a713..ee9fb37c6c8db1f94d6c3f7051cf1006c56eaacf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007-2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: nsec_47.c,v 1.12 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: nsec_47.c,v 1.13 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 18:21:15 PST 2000 by brister */
 
@@ -365,33 +365,33 @@ checknames_nsec(ARGS_CHECKNAMES) {
 
 static inline int
 casecompare_nsec(ARGS_COMPARE) {
-        isc_region_t region1;
-        isc_region_t region2;
-        dns_name_t name1;
-        dns_name_t name2;
-        int order;
+       isc_region_t region1;
+       isc_region_t region2;
+       dns_name_t name1;
+       dns_name_t name2;
+       int order;
 
-        REQUIRE(rdata1->type == rdata2->type);
-        REQUIRE(rdata1->rdclass == rdata2->rdclass);
-        REQUIRE(rdata1->type == 47);
-        REQUIRE(rdata1->length != 0);
-        REQUIRE(rdata2->length != 0);
+       REQUIRE(rdata1->type == rdata2->type);
+       REQUIRE(rdata1->rdclass == rdata2->rdclass);
+       REQUIRE(rdata1->type == 47);
+       REQUIRE(rdata1->length != 0);
+       REQUIRE(rdata2->length != 0);
 
-        dns_name_init(&name1, NULL);
-        dns_name_init(&name2, NULL);
+       dns_name_init(&name1, NULL);
+       dns_name_init(&name2, NULL);
 
-        dns_rdata_toregion(rdata1, &region1);
-        dns_rdata_toregion(rdata2, &region2);
+       dns_rdata_toregion(rdata1, &region1);
+       dns_rdata_toregion(rdata2, &region2);
 
-        dns_name_fromregion(&name1, &region1);
-        dns_name_fromregion(&name2, &region2);
+       dns_name_fromregion(&name1, &region1);
+       dns_name_fromregion(&name2, &region2);
 
-        order = dns_name_rdatacompare(&name1, &name2);
-        if (order != 0)
-                return (order);
+       order = dns_name_rdatacompare(&name1, &name2);
+       if (order != 0)
+               return (order);
 
-        isc_region_consume(&region1, name_length(&name1));
-        isc_region_consume(&region2, name_length(&name2));
+       isc_region_consume(&region1, name_length(&name1));
+       isc_region_consume(&region2, name_length(&name2));
 
        return (isc_region_compare(&region1, &region2));
 }
index 1137c7aea172d4a369e8a015edef4cb16d550497..717ed6533fbd112864d3aeff1f464a811d42cadc 100644 (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) 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: null_10.c,v 1.43 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: null_10.c,v 1.44 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 13:57:50 PST 2000 by explorer */
 
index 5037fc6f7ddd9dee01ac5cb9db3bd7a2cf6ad6aa..4d291a8e6f6ee68fde073eac75bd19b40cc6f9d0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: nxt_30.c,v 1.64 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: nxt_30.c,v 1.65 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Wed Mar 15 18:21:15 PST 2000 by brister */
 
index 2676eae43497b7711e84a2bbe066e95452caf07c..0d87e53179de9fef724370a73f711a58aca19e7d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: opt_41.c,v 1.34 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: opt_41.c,v 1.35 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 14:06:44 PST 2000 by gson */
 
index f7bc7a4a6493801436f29307acd7e36617812e43..d1a5ecd77cc266c00ed0fe08c288e2db52953b9a 100644 (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) 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: proforma.c,v 1.37 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: proforma.c,v 1.38 2009/12/04 22:06:37 tbox Exp $ */
 
 #ifndef RDATA_GENERIC_#_#_C
 #define RDATA_GENERIC_#_#_C
index 35eafc475c3568f9f81acfdee66b2ddca65cf6ae..a619f137a877f7119f637e8179c36ef75a70b585 100644 (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) 1998-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: ptr_12.c,v 1.44 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: ptr_12.c,v 1.45 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 14:05:12 PST 2000 by explorer */
 
@@ -79,7 +79,7 @@ totext_ptr(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_ptr(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 12);
 
@@ -88,8 +88,8 @@ fromwire_ptr(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_GLOBAL14);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index a638236439189befeb44cab72aae5732b1a2e0f2..3291f7bb55cd85cbf8998c9de9d7a0bf33b08747 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-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: rp_17.c,v 1.43 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: rp_17.c,v 1.44 2009/12/04 22:06:37 tbox Exp $ */
 
 /* RFC1183 */
 
@@ -93,8 +93,8 @@ totext_rp(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_rp(ARGS_FROMWIRE) {
-        dns_name_t rmail;
-        dns_name_t email;
+       dns_name_t rmail;
+       dns_name_t email;
 
        REQUIRE(type == 17);
 
@@ -103,11 +103,11 @@ fromwire_rp(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&rmail, NULL);
-        dns_name_init(&email, NULL);
+       dns_name_init(&rmail, NULL);
+       dns_name_init(&email, NULL);
 
-        RETERR(dns_name_fromwire(&rmail, source, dctx, options, target));
-        return (dns_name_fromwire(&email, source, dctx, options, target));
+       RETERR(dns_name_fromwire(&rmail, source, dctx, options, target));
+       return (dns_name_fromwire(&email, source, dctx, options, target));
 }
 
 static inline isc_result_t
index ba417089a3c66410f2203e5d4ade58afabe39a34..078cd4cb131a56e3ad0a3d1ad4dfeaa8f32d32f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: rrsig_46.c,v 1.11 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: rrsig_46.c,v 1.12 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Fri Mar 17 09:05:02 PST 2000 by gson */
 
index ea02746271bd415c36df581e112f1839fc3eacf6..8f71a2afc85047caa4e701ce245419c93ea370e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: rt_21.c,v 1.47 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: rt_21.c,v 1.48 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Thu Mar 16 15:02:31 PST 2000 by brister */
 
@@ -90,7 +90,7 @@ totext_rt(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_rt(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
        isc_region_t sregion;
        isc_region_t tregion;
 
@@ -101,7 +101,7 @@ fromwire_rt(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&name, NULL);
+       dns_name_init(&name, NULL);
 
        isc_buffer_activeregion(source, &sregion);
        isc_buffer_availableregion(target, &tregion);
index 4cbe86064faa6870d336abe928db9cbe6a92f779..4ac2040ef7c911c0ee54bdf642ca872d198ee087 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: sig_24.c,v 1.67 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: sig_24.c,v 1.68 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Fri Mar 17 09:05:02 PST 2000 by gson */
 
index e21e1138444b571fc5a5cd2f98fe06a7295213c0..492e315d454284e36ffbb03dbf8f18dae95c9b4f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: spf_99.c,v 1.5 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: spf_99.c,v 1.6 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 15:40:00 PST 2000 by bwelling */
 
index 3714176f98e92d728abead60cd30eadeec18605e..6f89a25b1e8c76418855b7f249bf1e33a58c76bd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: sshfp_44.c,v 1.8 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: sshfp_44.c,v 1.9 2009/12/04 22:06:37 tbox Exp $ */
 
 /* RFC 4255 */
 
index eeed44d396d60554feb50b9c4bb80cbc674b8fb7..580c94f6932afda4968e1b2f846da92c1a791965 100644 (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-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: tkey_249.c,v 1.58 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: tkey_249.c,v 1.59 2009/12/04 22:06:37 tbox Exp $ */
 
 /*
  * Reviewed: Thu Mar 16 17:35:30 PST 2000 by halley.
index cd902790acca436c88e75cefcfc79be768b0d3ff..c49864e670a8cb74b33dc44345c5d35ec896d84d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007-2009  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: txt_16.c,v 1.46 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: txt_16.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 15:40:00 PST 2000 by bwelling */
 
index 830194f7c2eedf475569f23d9f78b121310cb699..c335c6751da798dd168cbbc061b63a50ecb193ac 100644 (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.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: unspec_103.c,v 1.36 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: unspec_103.c,v 1.37 2009/12/04 22:06:37 tbox Exp $ */
 
 #ifndef RDATA_GENERIC_UNSPEC_103_C
 #define RDATA_GENERIC_UNSPEC_103_C
index 655ac083687f881956820ce9e2ec8e35aa078fce..6867fecd86f8b36a82df5d724c7bdc24ef0a69f6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: x25_19.c,v 1.40 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: x25_19.c,v 1.41 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 16:15:57 PST 2000 by bwelling */
 
index 7375a21b6bf3e4930a2b86b3dc0016221eea764d..50ae25d52b83ebcbf028bd838c03735d72256181 100644 (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.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: a_1.c,v 1.32 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: a_1.c,v 1.33 2009/12/04 22:06:37 tbox Exp $ */
 
 /* reviewed: Thu Mar 16 15:58:36 PST 2000 by brister */
 
index 089ff9d18e43fa5eaae0ffb2c3ff3d820f1222a4..8619f8a2136325c7f281f4a030b483904dd67ef9 100644 (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-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: a6_38.c,v 1.55 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: a6_38.c,v 1.56 2009/12/04 22:06:37 tbox Exp $ */
 
 /* RFC2874 */
 
index 87b48a9877d7ddf6c5010a4d7bfc3f7b0f94905c..902932e02548ab667bf2a2dd2ab3db29f0e4f6f2 100644 (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) 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: a_1.c,v 1.54 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: a_1.c,v 1.55 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 16:52:50 PST 2000 by bwelling */
 
index 65dae591a4fc4f080d68886223d781899f81ad4c..5aa59b2ccc2c6adc042aa2e867edb8857a2de7ff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: aaaa_28.c,v 1.46 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: aaaa_28.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 16:52:50 PST 2000 by bwelling */
 
index a35c63faaf1e0c97804815ec764f5c22c141228f..eb927b9219e3d53e0742d9f4f13b0a8765442d22 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007-2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 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: apl_42.c,v 1.15 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: apl_42.c,v 1.16 2009/12/04 22:06:37 tbox Exp $ */
 
 /* RFC3123 */
 
index e107d56cb18b19b948412590bea4033647841d86..0749272b42e0abdd47cacdce49384c36ec063084 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2007, 2009  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: dhcid_49.c,v 1.6 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: dhcid_49.c,v 1.7 2009/12/04 22:06:37 tbox Exp $ */
 
 /* RFC 4701 */
 
@@ -51,7 +51,7 @@ totext_in_dhcid(ARGS_TOTEXT) {
        dns_rdata_toregion(rdata, &sr);
 
        if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
-               RETERR(str_totext("( " /*)*/, target)); 
+               RETERR(str_totext("( " /*)*/, target));
        RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
                                 target));
        if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
index b22c558269e0892ca0c70b9187c975c3eef824d0..fbe3b71deaa08d449ce6350d571609d6f1ded102 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: kx_36.c,v 1.46 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: kx_36.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Thu Mar 16 17:24:54 PST 2000 by explorer */
 
@@ -85,7 +85,7 @@ totext_in_kx(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_in_kx(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
        isc_region_t sregion;
 
        REQUIRE(type == 36);
@@ -96,7 +96,7 @@ fromwire_in_kx(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&name, NULL);
+       dns_name_init(&name, NULL);
 
        isc_buffer_activeregion(source, &sregion);
        if (sregion.length < 2)
index 07f92be44678601f9871f69e6686d984c0f2d5da..78df645a2a1fd09ebcdad5b927e5bc66124b7642 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-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: nsap-ptr_23.c,v 1.39 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: nsap-ptr_23.c,v 1.40 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Fri Mar 17 10:16:02 PST 2000 by gson */
 
@@ -73,7 +73,7 @@ totext_in_nsap_ptr(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_in_nsap_ptr(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
 
        REQUIRE(type == 23);
        REQUIRE(rdclass == 1);
@@ -83,8 +83,8 @@ fromwire_in_nsap_ptr(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&name, NULL);
-        return (dns_name_fromwire(&name, source, dctx, options, target));
+       dns_name_init(&name, NULL);
+       return (dns_name_fromwire(&name, source, dctx, options, target));
 }
 
 static inline isc_result_t
index df29cc849a0ba1930e3eb1b3b015165844083dde..d762fe1d5688b8b233492ebce136d4ec0409b4f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: nsap_22.c,v 1.43 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: nsap_22.c,v 1.44 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Fri Mar 17 10:41:07 PST 2000 by gson */
 
index 95c57864a04bc318ee019476eb5c2dd6b85b1edc..a4111ad5bb76e75cff71771bd8c2828cc813f307 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: px_26.c,v 1.44 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: px_26.c,v 1.45 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Mon Mar 20 10:44:27 PST 2000 */
 
@@ -115,7 +115,7 @@ totext_in_px(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_in_px(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
        isc_region_t sregion;
 
        REQUIRE(type == 26);
@@ -126,7 +126,7 @@ fromwire_in_px(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&name, NULL);
+       dns_name_init(&name, NULL);
 
        /*
         * Preference.
index 69ff67d02163c75c6cd25dcd4195362518a85816..ea4f3edbcdefb1046224427b8f16bd635c650c67 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  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: srv_33.c,v 1.46 2009/12/04 21:09:34 marka Exp $ */
+/* $Id: srv_33.c,v 1.47 2009/12/04 22:06:37 tbox Exp $ */
 
 /* Reviewed: Fri Mar 17 13:01:00 PST 2000 by bwelling */
 
@@ -140,7 +140,7 @@ totext_in_srv(ARGS_TOTEXT) {
 
 static inline isc_result_t
 fromwire_in_srv(ARGS_FROMWIRE) {
-        dns_name_t name;
+       dns_name_t name;
        isc_region_t sr;
 
        REQUIRE(type == 33);
@@ -151,7 +151,7 @@ fromwire_in_srv(ARGS_FROMWIRE) {
 
        dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
 
-        dns_name_init(&name, NULL);
+       dns_name_init(&name, NULL);
 
        /*
         * Priority, weight, port.
index 8f3c76fde78039485d2d3269cd8668d34d07c24b..238877ee74f925f4c860a7566b42d2439d148505 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.c,v 1.536 2009/12/04 21:09:33 marka Exp $ */
+/* $Id: zone.c,v 1.537 2009/12/04 22:06:37 tbox Exp $ */
 
 /*! \file */
 
@@ -3456,7 +3456,7 @@ zone_postload(dns_zone_t *zone, dns_db_t *db, isc_time_t loadtime,
                        result = DNS_R_BADZONE;
                        goto cleanup;
                }
-               
+
                if (zone->type == dns_zone_master &&
                    DNS_ZONE_OPTION(zone, DNS_ZONEOPT_CHECKDUPRR) &&
                    !zone_check_dup(zone, db)) {