From: Nick Mathewson Date: Wed, 23 Feb 2005 06:46:54 +0000 (+0000) Subject: clarify comment X-Git-Tag: tor-0.1.0.1-rc~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69a36e352e1d115b6991e71cd35fbcb87296d975;p=thirdparty%2Ftor.git clarify comment svn:r3667 --- diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index ec085bb406..8505d98f35 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -499,7 +499,7 @@ void client_dns_set_addressmap(const char *address, uint32_t val) tor_assert(address); tor_assert(val); if (tor_inet_aton(address, &in)) - return; /* don't set an addresmap back to ourselves! ????NM*/ + return; /* If address was an IP address already, don't add a mapping. */ in.s_addr = htonl(val); addr = tor_malloc(INET_NTOA_BUF_LEN); tor_inet_ntoa(&in,addr,INET_NTOA_BUF_LEN);