diff options
Diffstat (limited to '')
-rw-r--r-- | common/pka.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/pka.c b/common/pka.c index 7ac70d9c4..89761f5a5 100644 --- a/common/pka.c +++ b/common/pka.c @@ -175,7 +175,7 @@ get_pka_info (const char *address, unsigned char *fpr) #else /*!USE_ADNS*/ unsigned char answer[PACKETSZ]; int anslen; - int qdcount, ancount, nscount, arcount; + int qdcount, ancount; int rc; unsigned char *p, *pend; const char *domain; @@ -212,8 +212,6 @@ get_pka_info (const char *address, unsigned char *fpr) qdcount = ntohs (header.qdcount); ancount = ntohs (header.ancount); - nscount = ntohs (header.nscount); - arcount = ntohs (header.arcount); if (!ancount) return NULL; /* Got no answer. */ |