remove unneeded members from dns_validator

- val->keynode and val->seensig were set but never used.
- val->nearest, val->soaset, val->soaname, val->nsecset and val->nsec3set
  were never used at all.
This commit is contained in:
Evan Hunt
2019-09-15 16:36:16 -07:00
parent 3a4334636b
commit 692c879e3c
4 changed files with 22 additions and 63 deletions

View File

@@ -47,8 +47,8 @@ struct dns_keynode {
unsigned int magic;
isc_refcount_t refcount;
dst_key_t * key;
bool managed;
bool initial;
bool managed;
bool initial;
struct dns_keynode * next;
};