summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMrigyen Sawant <Mrigyen@users.noreply.github.com>2020-04-07 23:32:39 +0530
committerDavid Goulet <dgoulet@torproject.org>2020-04-08 09:41:58 -0400
commit34faee0600e4efe2a76a1776f6c9bd3173b3e0c5 (patch)
tree77b3141001e03efed5199b69eefb6a6d242d32be
parent80a306c6e7d20efc44f2f93b559c44a52d952c39 (diff)
downloadtor-34faee0600e4efe2a76a1776f6c9bd3173b3e0c5.tar.gz
tor-34faee0600e4efe2a76a1776f6c9bd3173b3e0c5.zip
Correct 'was not internal' to 'was internal' in test_external_ip()
-rw-r--r--src/test/test_addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_addr.c b/src/test/test_addr.c
index af3c125a20..42232e467a 100644
--- a/src/test/test_addr.c
+++ b/src/test/test_addr.c
@@ -110,7 +110,7 @@ test_addr_basic(void *arg)
tt_int_op(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), OP_EQ, 1); \
t1.family = AF_INET6; \
if (tor_addr_is_internal(&t1, for_listening)) \
- TT_DIE(("%s was not internal", a)); \
+ TT_DIE(("%s was internal", a)); \
STMT_END
#ifndef COCCI