From: Wouter Wijngaards Date: Thu, 31 Oct 2013 15:51:08 +0000 (+0000) Subject: remove unused statement. X-Git-Tag: release-1.4.22rc1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caba9daada7fc3233da1e3497b096c32d8963b24;p=thirdparty%2Funbound.git remove unused statement. git-svn-id: file:///svn/unbound/trunk@3003 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/ldns/wire2str.c b/ldns/wire2str.c index d68335247..80222b210 100644 --- a/ldns/wire2str.c +++ b/ldns/wire2str.c @@ -391,9 +391,8 @@ static int ldns_rr_tcttl_scan(uint8_t** d, size_t* dl, char** s, size_t* sl) w += ldns_wire2str_type_print(s, sl, t); if(*dl == 0) return w + ldns_str_print(s, sl, "; Error no ttl"); - else return w + print_remainder_hex( - "; Error malformed ttl 0x", d, dl, s, sl); - return w; + return w + print_remainder_hex( + "; Error malformed ttl 0x", d, dl, s, sl); } t = ldns_read_uint16(*d); c = ldns_read_uint16((*d)+2);