Don't silently discard all-zeroes adddresses in --host-record.

This commit is contained in:
Simon Kelley
2019-10-25 17:46:49 +01:00
parent 1292e1a557
commit 157d8cfd6a
3 changed files with 15 additions and 6 deletions

View File

@@ -397,9 +397,11 @@ struct auth_zone {
struct auth_zone *next;
};
#define HR_6 1
#define HR_4 2
struct host_record {
int ttl;
int ttl, flags;
struct name_list {
char *name;
struct name_list *next;