diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-10-11 19:22:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-10-11 20:09:24 -0400 |
commit | 0e1b228aa6b5ed7665ba5167a2b88924e58fb9b5 (patch) | |
tree | a972275f9370f60aaf60e8653bc2e212c481556d /src | |
parent | 2e7e635c593f13012303ced2bb85d50ed3195d24 (diff) | |
download | tor-0e1b228aa6b5ed7665ba5167a2b88924e58fb9b5.tar.gz tor-0e1b228aa6b5ed7665ba5167a2b88924e58fb9b5.zip |
Fix a bug in displaying IPv6 addrs in test_op_ipv6_ with --verbose
The test code, if it failed, or if it was run in verbose mode, would
use the wrong variable for its loop. Patch from rubiate uploaded to
19999.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test_addr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_addr.c b/src/test/test_addr.c index c8a9e6d384..49e248014f 100644 --- a/src/test/test_addr.c +++ b/src/test/test_addr.c @@ -85,8 +85,8 @@ test_addr_basic(void *arg) char *, "%s", \ { char *cp; \ cp = print_ = tor_malloc(64); \ - for (int ii_=0;i<16;++i) { \ - tor_snprintf(cp, 3,"%02x", (unsigned)value_->s6_addr[i]);\ + for (int ii_=0;ii_<16;++ii_) { \ + tor_snprintf(cp, 3,"%02x", (unsigned)value_->s6_addr[ii_]); \ cp += 2; \ if (ii_ != 15) *cp++ = ':'; \ } \ |