]> git.ipfire.org Git - thirdparty/mtr.git/commitdiff
Remove unused variable
authorTravis Cross <tc@traviscross.com>
Tue, 5 Feb 2013 19:41:30 +0000 (19:41 +0000)
committerTravis Cross <tc@traviscross.com>
Thu, 7 Feb 2013 14:02:02 +0000 (14:02 +0000)
Introduced in commit e81da3a2fab6af4969902b6c268c8dfac43ea6fb

asn.c

diff --git a/asn.c b/asn.c
index b8f97d7a02cce8c38bbe16deaa0c34f779066271..f9484a8fc330575c909cdec824c0a5b1304db83b 100644 (file)
--- a/asn.c
+++ b/asn.c
@@ -46,7 +46,7 @@ char *asn_lookup(const char *domain)
     unsigned char answer[PACKETSZ],  *pt;
     char host[128];
     char *txt;
-    int len, exp, cttl, size, txtlen, type;
+    int len, exp, size, txtlen, type;
 
 
     if(res_init() < 0) {
@@ -85,7 +85,6 @@ char *asn_lookup(const char *domain)
     }
 
     pt += INT16SZ; /* class */
-    GETLONG(cttl, pt);
     GETSHORT(size, pt);
     txtlen = *pt;