From: Travis Cross Date: Tue, 5 Feb 2013 19:41:30 +0000 (+0000) Subject: Remove unused variable X-Git-Tag: v0.83~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8a22c0746c6ca936ce92e451c7e2d554b525a70;p=thirdparty%2Fmtr.git Remove unused variable Introduced in commit e81da3a2fab6af4969902b6c268c8dfac43ea6fb --- diff --git a/asn.c b/asn.c index b8f97d7..f9484a8 100644 --- 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;