]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
why does lint fail?
authorMiek Gieben <miekg@NLnetLabs.nl>
Thu, 20 Apr 2006 12:33:30 +0000 (12:33 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Thu, 20 Apr 2006 12:33:30 +0000 (12:33 +0000)
dnssec.c

index ed94ba5c21bc490a1cbc2baac78b1ec23beeee38..bcb6c9d5f2d257cc4989ea11dbda379dc871cd25 100644 (file)
--- a/dnssec.c
+++ b/dnssec.c
@@ -1133,7 +1133,6 @@ ldns_nsec_covers_rrset(const ldns_rr *nsec, ldns_rdf *name, ldns_rr_type type)
        
        if (ldns_dname_compare(nsec_owner, name) <= 0 &&
            ldns_dname_compare(name, nsec_next) > 0) {
-               fprintf(stderr, "nsec covers name!\n");
                
                /* Check the bitmap if our type is there */
                bitmap = ldns_rdf_data(ldns_rr_rdf(nsec, 1));
@@ -1154,7 +1153,6 @@ ldns_nsec_covers_rrset(const ldns_rr *nsec, ldns_rdf *name, ldns_rr_type type)
                        }
                }
        }
-       
        return false;
 }