diff --git a/ClientContext.cpp b/ClientContext.cpp index 4a34cbdc..0b1c7344 100644 --- a/ClientContext.cpp +++ b/ClientContext.cpp @@ -93,45 +93,45 @@ namespace client m_HttpProxy->Stop(); delete m_HttpProxy; m_HttpProxy = nullptr; - LogPrint("HTTP Proxy stoped"); + LogPrint("HTTP Proxy stopped"); m_SocksProxy->Stop(); delete m_SocksProxy; m_SocksProxy = nullptr; - LogPrint("SOCKS Proxy stoped"); + LogPrint("SOCKS Proxy stopped"); if (m_IrcTunnel) { m_IrcTunnel->Stop (); delete m_IrcTunnel; m_IrcTunnel = nullptr; - LogPrint("IRC tunnel stoped"); + LogPrint("IRC tunnel stopped"); } if (m_ServerTunnel) { m_ServerTunnel->Stop (); delete m_ServerTunnel; m_ServerTunnel = nullptr; - LogPrint("Server tunnel stoped"); + LogPrint("Server tunnel stopped"); } if (m_SamBridge) { m_SamBridge->Stop (); delete m_SamBridge; m_SamBridge = nullptr; - LogPrint("SAM brdige stoped"); + LogPrint("SAM brdige stopped"); } if (m_BOBCommandChannel) { m_BOBCommandChannel->Stop (); delete m_BOBCommandChannel; m_BOBCommandChannel = nullptr; - LogPrint("BOB command channel stoped"); + LogPrint("BOB command channel stopped"); } if (m_I2PControlService) { m_I2PControlService->Stop (); delete m_I2PControlService; m_I2PControlService = nullptr; - LogPrint("I2PControl stoped"); + LogPrint("I2PControl stopped"); } for (auto it: m_Destinations) diff --git a/Daemon.cpp b/Daemon.cpp index 6fd54f0e..1dbbc82f 100644 --- a/Daemon.cpp +++ b/Daemon.cpp @@ -128,15 +128,15 @@ namespace i2p { LogPrint("Shutdown started."); i2p::client::context.Stop(); - LogPrint("Client stoped"); + LogPrint("Client stopped"); i2p::tunnel::tunnels.Stop(); - LogPrint("Tunnels stoped"); + LogPrint("Tunnels stopped"); i2p::transport::transports.Stop(); - LogPrint("Transports stoped"); + LogPrint("Transports stopped"); i2p::data::netdb.Stop(); - LogPrint("NetDB stoped"); + LogPrint("NetDB stopped"); d.httpServer->Stop(); - LogPrint("HTTP Server stoped"); + LogPrint("HTTP Server stopped"); #ifdef USE_UPNP i2p::UPnP::upnpc.Stop(); #endif diff --git a/api.cpp b/api.cpp index 0fb4256f..6f3c8c4c 100644 --- a/api.cpp +++ b/api.cpp @@ -39,11 +39,11 @@ namespace api { LogPrint("Shutdown started."); i2p::tunnel::tunnels.Stop(); - LogPrint("Tunnels stoped"); + LogPrint("Tunnels stopped"); i2p::transport::transports.Stop(); - LogPrint("Transports stoped"); + LogPrint("Transports stopped"); i2p::data::netdb.Stop(); - LogPrint("NetDB stoped"); + LogPrint("NetDB stopped"); StopLog (); }