From: Nick Mathewson Date: Thu, 6 Dec 2012 16:45:06 +0000 (-0500) Subject: Fixed an unused-variable warning X-Git-Tag: tor-0.2.4.7-alpha~6^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8969d9e0b6b95e29713ffabc7cb4492a4dba2e28;p=thirdparty%2Ftor.git Fixed an unused-variable warning --- diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 61e57bfe2e..3207f588ec 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -2064,10 +2064,6 @@ connection_ap_handshake_socks_resolved(entry_connection_t *conn, size_t replylen; if (ttl >= 0) { - origin_circuit_t *origin_circ = NULL; - circuit_t *circ = ENTRY_TO_EDGE_CONN(conn)->on_circuit; - if (CIRCUIT_IS_ORIGIN(circ)) /* should always be true */ - origin_circ = TO_ORIGIN_CIRCUIT(circ); if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { tor_addr_t a; tor_addr_from_ipv4n(&a, get_uint32(answer));