summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-08-14 10:00:15 +0000
committerRoger Dingledine <arma@torproject.org>2006-08-14 10:00:15 +0000
commit5194b910533b7fd29a2cebe7c4dbe450b8656cef (patch)
tree1f33a57d507dbe6513891d066134c7fe94f0d647
parent4b94dabb53cd07a0835289e24a66450cf2d165f9 (diff)
downloadtor-5194b910533b7fd29a2cebe7c4dbe450b8656cef.tar.gz
tor-5194b910533b7fd29a2cebe7c4dbe450b8656cef.zip
avoid complaining about our SOCKS proxy proxy.
svn:r7053
-rw-r--r--src/or/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c
index f7a54f6cfa..7beca558b3 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -2090,9 +2090,9 @@ options_validate(or_options_t *old_options, or_options_t *options,
if (!is_internal_IP(addr, 1) &&
(!old_options || !config_lines_eq(old, opt))) {
log_warn(LD_CONFIG,
- "You specified a public address '%s' for a %s listener. Other "
+ "You specified a public address '%s' for a %s. Other "
"people on the Internet might find your computer and use it as "
- "an open %s proxy. Please don't allow this unless you have "
+ "an open %s. Please don't allow this unless you have "
"a good reason.", address, tp, tp);
}
tor_free(address);