diff options
author | Veres Lajos <vlajos@gmail.com> | 2015-08-09 00:17:27 +0100 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-09-22 00:43:15 +0000 |
commit | 45bfa137efe84d772e58512630a2ae7a1b5fd55a (patch) | |
tree | fd0617f7983c64bf570e573d66f36e085c0e067d /src/netbase.cpp | |
parent | 21c406eda0e936d8575715068b050ff9124e6b2e (diff) |
PARTIAL: typofixes (found by misspell_fixer)
Upstream: 9f68ed6b6d1a9c6436ce37913666165f2b180ee3 (PR #6539)
Diffstat (limited to 'src/netbase.cpp')
-rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 3fd779910a..e7b589767a 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -346,7 +346,7 @@ static bool Socks5(const std::string& strDest, int port, const ProxyCredentials } if (pchRetA[0] != 0x01 || pchRetA[1] != 0x00) { CloseSocket(hSocket); - return error("Proxy authentication unsuccesful"); + return error("Proxy authentication unsuccessful"); } } else if (pchRet1[1] == 0x00) { // Perform no authentication |