[tor-commits] [tor/master] Fix a comment in tor_addr_parse

nickm at torproject.org nickm at torproject.org
Sun Dec 21 18:37:10 UTC 2014


commit 769fc5af09f140ff636131e4172bfcbe267d6b42
Author: teor <teor2345 at gmail.com>
Date:   Sun Dec 21 13:35:42 2014 -0500

    Fix a comment in tor_addr_parse
---
 src/common/address.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/common/address.c b/src/common/address.c
index a3b5df6..0b475fc 100644
--- a/src/common/address.c
+++ b/src/common/address.c
@@ -1119,7 +1119,8 @@ fmt_addr32(uint32_t addr)
 int
 tor_addr_parse(tor_addr_t *addr, const char *src)
 {
-  char *tmp = NULL; /* Holds substring if we got a dotted quad. */
+  /* Holds substring of IPv6 address after removing square brackets */
+  char *tmp = NULL;
   int result;
   struct in_addr in_tmp;
   struct in6_addr in6_tmp;





More information about the tor-commits mailing list