diff options
author | Pier Angelo Vendrame <pierov@torproject.org> | 2024-09-10 14:24:46 +0200 |
---|---|---|
committer | Pier Angelo Vendrame <pierov@torproject.org> | 2024-09-10 14:24:46 +0200 |
commit | 7cb6e04acb884c98ca3d734fdc5efbd7d0ce4154 (patch) | |
tree | 7fe1ecf1b2260b67e757596618eb0db99b78cf72 /src | |
parent | 17a70ab7c53b31a51ce615f7ad280c7df32e8701 (diff) | |
download | tor-7cb6e04acb884c98ca3d734fdc5efbd7d0ce4154.tar.gz tor-7cb6e04acb884c98ca3d734fdc5efbd7d0ce4154.zip |
Fix a typo in the HTTP proxy error message.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/proto/proto_socks.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/proto/proto_socks.c b/src/core/proto/proto_socks.c index 78767a94ff..72966b88dd 100644 --- a/src/core/proto/proto_socks.c +++ b/src/core/proto/proto_socks.c @@ -919,11 +919,12 @@ static const char SOCKS_PROXY_IS_NOT_AN_HTTP_PROXY_MSG[] = "<title>This is a SOCKS Proxy, Not An HTTP Proxy</title>\n" "</head>\n" "<body>\n" - "<h1>This is a SOCKs proxy, not an HTTP proxy.</h1>\n" + "<h1>This is a SOCKS proxy, not an HTTP proxy.</h1>\n" "<p>\n" "It appears you have configured your web browser to use this Tor port as\n" "an HTTP proxy.\n" - "</p><p>\n" + "</p>\n" + "<p>\n" "This is not correct: This port is configured as a SOCKS proxy, not\n" "an HTTP proxy. If you need an HTTP proxy tunnel, use the HTTPTunnelPort\n" "configuration option in place of, or in addition to, SOCKSPort.\n" |