Skip to content

Commit 5a9ee17

Browse files
committed
Removing debug statement
1 parent dc637c2 commit 5a9ee17

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

dname.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,6 @@ labels_plus_dname(const dname_type* labels, size_t amount_to_be_copied, const dn
674674
for (i = 0; i < amount_to_be_copied; i++)
675675
{
676676
copied_label_size += label_length(dname_label(labels, labels->label_count - i - 1));
677-
printf("%hhu\n", copied_label_size);
678677
}
679678
if ((int)dname->name_size + copied_label_size + 1 > MAXDOMAINLEN)
680679
return NULL;

namedb.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,7 @@ domain_find_deleg_rrsets(domain_type* delegation_domain, zone_type* zone, namedb
619619

620620
while (signatures)
621621
{
622-
printf("Amount found: %d\n", signatures->rr_count);
623-
if (signatures->rrs->type != TYPE_RRSIG) break; // If not assertion on the next line fails
622+
if (signatures->rrs->type != TYPE_RRSIG) break;
624623
if (rr_rrsig_type_covered(signatures->rrs) == TYPE_DELEG)
625624
{
626625
signatures_found++;

0 commit comments

Comments
 (0)