diff options
Diffstat (limited to 'util/pka.c')
-rw-r--r-- | util/pka.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/pka.c b/util/pka.c index a8e4f9aa3..08c82f1bb 100644 --- a/util/pka.c +++ b/util/pka.c @@ -122,7 +122,7 @@ get_pka_info (const char *address, unsigned char *fpr) HEADER h; } answer; int anslen; - int qdcount, ancount, nscount, arcount; + int qdcount, ancount; int rc; unsigned char *p, *pend; const char *domain; @@ -151,8 +151,6 @@ get_pka_info (const char *address, unsigned char *fpr) qdcount = ntohs (answer.h.qdcount); ancount = ntohs (answer.h.ancount); - nscount = ntohs (answer.h.nscount); - arcount = ntohs (answer.h.arcount); if (!ancount) return NULL; /* Got no answer. */ |