summaryrefslogtreecommitdiff
path: root/src/or/connection_or.c
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2012-06-14 18:01:22 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2012-06-14 18:01:22 +0300
commitaa212b173c340536eb94b4978174b068ead89cb1 (patch)
tree7f0dfc25a11888893136c94886248776c4c61283 /src/or/connection_or.c
parent068046eebc73fbe1f0d8419f0dfea65d3de9c14a (diff)
downloadtor-aa212b173c340536eb94b4978174b068ead89cb1.tar.gz
tor-aa212b173c340536eb94b4978174b068ead89cb1.zip
Remove validate_pluggable_transports_config(): redundant since 9d9b5ed0.
The warning message of validate_pluggable_transports_config() is superseded by the changes in the warning message of connection_or_connect() when the proxy credentials can't be found.
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r--src/or/connection_or.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index cbb1110c6d..467e169d7e 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -1085,9 +1085,10 @@ connection_or_connect(const tor_addr_t *_addr, uint16_t port,
if (transport_name) {
log_warn(LD_GENERAL, "We were supposed to connect to bridge '%s:%u' "
- "using pluggable transport '%s', but it seems that we can't "
- "find a pluggable transport proxy supporting '%s'. Please make "
- "sure that your configuration file is valid.",
+ "using pluggable transport '%s', but we can't find a pluggable "
+ "transport proxy supporting '%s'. This can happen if you "
+ "haven't provided a ClientTransportPlugin line, or if "
+ "your pluggable transport proxy stopped running.",
fmt_addr(&TO_CONN(conn)->addr), TO_CONN(conn)->port,
transport_name, transport_name);
} else {