From b48846506ffbb9f92a6a2d2969af4a860ef5ec4c Mon Sep 17 00:00:00 2001 From: Alexander Ryzhov Date: Sun, 4 Jun 2017 19:39:15 +0300 Subject: [PATCH] Cosmetic changes for "Host XXX.YY not inside I2P network" message Signed-off-by: Alexander Ryzhov --- libi2pd_client/HTTPProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd_client/HTTPProxy.cpp b/libi2pd_client/HTTPProxy.cpp index 55bd60fe..7fb64ad1 100644 --- a/libi2pd_client/HTTPProxy.cpp +++ b/libi2pd_client/HTTPProxy.cpp @@ -309,7 +309,7 @@ namespace proxy { GenericProxyError("Outproxy failure", "bad outproxy settings"); } else { LogPrint (eLogWarning, "HTTPProxy: outproxy failure for ", dest_host, ": no outprxy enabled"); - std::string message = "Host" + dest_host + "not inside I2P network, but outproxy is not enabled"; + std::string message = "Host " + dest_host + " not inside I2P network, but outproxy is not enabled"; GenericProxyError("Outproxy failure", message.c_str()); } return true;