Fix display of CNAME/A records in log file.

print_dns_result() will show the number of records
found _and_ put a heading for this type of record
into the logfile.

So we can't get both right (short of changing
print_dns_result(), what I don't like to do
just now): either the count will be too high,
as we can't subtract wrong records from it, or
the "heading" will follow after the list of
records in the log. So we'll have to live with
the former, until print_dns_result() can be
fixed.

Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
Thomas Hochstein 2016-01-09 12:34:21 +01:00
parent d531f437f0
commit 136e4166ed
2 changed files with 10 additions and 8 deletions

View file

@ -1,3 +1,9 @@
Version 0.6.3 (unreleased)
* Fix display of CNAME/A records in log file.
Thomas Hochstein <thh@inter.net> Sat Jan 9 12:34:21 2016 +0100
Version 0.6.2 (2016-01-09)
* Try to handle CNAMEs and resolve them to A records.