From: Yawning Angel Date: Thu, 1 May 2014 18:58:53 +0000 (+0000) Subject: Improve the log message when a transport doesn't support proxies. X-Git-Tag: tor-0.2.6.1-alpha~136^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60ac9f1c90f6036356f778513f0eb3e2f9760fa3;p=thirdparty%2Ftor.git Improve the log message when a transport doesn't support proxies. Per feedback, explicltly note that the transport will be killed when it does not acknowledge the configured outgoing proxy. --- diff --git a/src/or/transports.c b/src/or/transports.c index b810315d57..eee159d374 100644 --- a/src/or/transports.c +++ b/src/or/transports.c @@ -805,7 +805,8 @@ handle_finished_proxy(managed_proxy_t *mp) case PT_PROTO_CONFIGURED: /* if configured correctly: */ if (mp->proxy_uri && !mp->proxy_supported) { log_warn(LD_CONFIG, "Managed proxy '%s' did not configure the " - "specified outgoing proxy.", mp->argv[0]); + "specified outgoing proxy and will be terminated.", + mp->argv[0]); managed_proxy_destroy(mp, 1); /* annihilate it. */ break; }