diff options
author | Remko Tronçon <git@el-tramo.be> | 2014-05-18 09:35:46 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2014-05-18 15:49:12 (GMT) |
commit | 1165b03c019a2207dc58a2070b1d5ff5833b8093 (patch) | |
tree | fe45cfcf334555ebd2480808c4ce55218c76c30f /Swiften/Client | |
parent | 9bba31c6ce54290011a96723f720d872ecdbabca (diff) | |
download | swift-1165b03c019a2207dc58a2070b1d5ff5833b8093.zip swift-1165b03c019a2207dc58a2070b1d5ff5833b8093.tar.bz2 |
Fix copy paste error
Change-Id: I4d9ecc462d90821d3232f583e2e3ebea6a9eed74
Diffstat (limited to 'Swiften/Client')
-rw-r--r-- | Swiften/Client/CoreClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Client/CoreClient.cpp b/Swiften/Client/CoreClient.cpp index f6a3bb8..d927c0b 100644 --- a/Swiften/Client/CoreClient.cpp +++ b/Swiften/Client/CoreClient.cpp @@ -74,7 +74,7 @@ void CoreClient::connect(const ClientOptions& o) { case ClientOptions::SystemConfiguredProxy: SWIFT_LOG(debug) << " with a system configured proxy" << std::endl; if (systemSOCKS5Proxy.isValid()) { - SWIFT_LOG(debug) << "Found SOCK5 Proxy: " << systemSOCKS5Proxy.getAddress().toString() << ":" << systemHTTPConnectProxy.getPort() << std::endl; + SWIFT_LOG(debug) << "Found SOCK5 Proxy: " << systemSOCKS5Proxy.getAddress().toString() << ":" << systemSOCKS5Proxy.getPort() << std::endl; proxyConnectionFactories.push_back(new SOCKS5ProxiedConnectionFactory(networkFactories->getDomainNameResolver(), networkFactories->getConnectionFactory(), networkFactories->getTimerFactory(), systemSOCKS5Proxy.getAddress().toString(), systemSOCKS5Proxy.getPort())); } if (systemHTTPConnectProxy.isValid()) { |