From 0968e0229bc2123afb3a8bfd1f1f12f3e70877d0 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 8 May 2012 14:32:51 -0700 Subject: [PATCH] Typo. --- src/Application.cpp | 2 +- src/ConnectionPool.cpp | 2 +- src/HttpsClient.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index e4a15b271..af7a09fde 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -102,7 +102,7 @@ void Application::run() } // - // Begin connectting to network. + // Begin connecting to network. // mConnectionPool.start(); diff --git a/src/ConnectionPool.cpp b/src/ConnectionPool.cpp index 51baf795f..fe94c84ba 100644 --- a/src/ConnectionPool.cpp +++ b/src/ConnectionPool.cpp @@ -177,7 +177,7 @@ bool ConnectionPool::connectTo(const std::string& strIp, int iPort) if (it == mIpMap.end()) { // Did not find it. Not already connecting or connected. - std::cerr << "ConnectionPool::connectTo: Connectting: " + std::cerr << "ConnectionPool::connectTo: Connecting: " << strIp << " " << iPort << std::endl; Peer::pointer peer(Peer::create(theApp->getIOService(), mCtx)); diff --git a/src/HttpsClient.cpp b/src/HttpsClient.cpp index 7a4471496..154bacc98 100644 --- a/src/HttpsClient.cpp +++ b/src/HttpsClient.cpp @@ -167,7 +167,7 @@ void HttpsClient::handleConnect(const boost::system::error_code& ecResult) if (!mShutdown) { - // std::cerr << "Connectted." << std::endl; + // std::cerr << "Connected." << std::endl; mSocketSsl.lowest_layer().set_option(boost::asio::ip::tcp::no_delay(true)); mSocketSsl.set_verify_mode(boost::asio::ssl::verify_peer);