summaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2018-09-08 17:08:22 -0400
committerRoger Dingledine <arma@torproject.org>2018-09-08 17:08:22 -0400
commit776c1a5d1a39e5fd9ba3313730c47b10f25e4d24 (patch)
tree75fbf424df3134ed797227e42941bc8eb70248c7 /src/app
parent9f0e8d8c032fadde93d2079d60eff289203a2fb9 (diff)
downloadtor-776c1a5d1a39e5fd9ba3313730c47b10f25e4d24.tar.gz
tor-776c1a5d1a39e5fd9ba3313730c47b10f25e4d24.zip
make ipv6-only config complaint clearer
(a relay operator hit this on #tor-relays and couldn't make sense of it. i couldn't either until i went to go read the code.)
Diffstat (limited to 'src/app')
-rw-r--r--src/app/config/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c
index 5f46751f93..b3a6e57fa8 100644
--- a/src/app/config/config.c
+++ b/src/app/config/config.c
@@ -7565,8 +7565,8 @@ check_server_ports(const smartlist_t *ports,
}
if (n_orport_advertised && !n_orport_advertised_ipv4 &&
!options->BridgeRelay) {
- log_warn(LD_CONFIG, "Configured non-bridge only to listen on an IPv6 "
- "address.");
+ log_warn(LD_CONFIG, "Configured public relay to listen only on an IPv6 "
+ "address. Tor needs to listen on an IPv4 address too.");
r = -1;
}