]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
Address Issue #145 by naming everything occluded occluded
authorWillem Toorop <willem@nlnetlabs.nl>
Fri, 12 Aug 2022 09:38:52 +0000 (11:38 +0200)
committerWillem Toorop <willem@nlnetlabs.nl>
Fri, 12 Aug 2022 09:38:52 +0000 (11:38 +0200)
Even though some of those are (also) glue

Changelog
examples/ldns-verify-zone.c

index a64914e920f75458236be921e05c45f0b324d9c1..034619b1a38dc63ad6e544342788b471cd71bfa6 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -14,6 +14,8 @@
        * bugfix #46: Print network errors when secure tracing.
          Thanks reedjc
        * EDNS0 Option handling and conversion into presentation format.
+       * bugfix #145: ldns-verify-zone should not call occluded records
+         glue. Thanks Habbie
 
 1.8.1  2021-12-03
        * bugfix #146: ldns-1.7.1 had soname 3.0, so ldns-1.8.x soname
index 898d937a08053cfa2014376ba83f98542bb0abf3..ac076cd1afe7b3d95f05985bd2a94ae85507e963 100644 (file)
@@ -437,7 +437,8 @@ verify_dnssec_name(ldns_rdf *zone_name, ldns_dnssec_zone* zone,
                                        fprintf(myerr, "\t");
                                        print_type(myerr, cur_rrset->type);
                                        fprintf(myerr, " has signature(s),"
-                                                       " but is glue\n");
+                                                       " but is occluded"
+                                                       " (or glue)\n");
                                }
                                result = LDNS_STATUS_ERR;
                        }
@@ -448,7 +449,8 @@ verify_dnssec_name(ldns_rdf *zone_name, ldns_dnssec_zone* zone,
                                fprintf(myerr, "Error: ");
                                ldns_rdf_print(myerr, name->name);
                                fprintf(myerr, " has an NSEC(3),"
-                                               " but is glue\n");
+                                               " but is occluded"
+                                               " (or glue)\n");
                        }
                        result = LDNS_STATUS_ERR;
                }