1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

Cosmetic changes for "Host XXX.YY not inside I2P network" message

Signed-off-by: Alexander Ryzhov <github@ryzhov-al.ru>
This commit is contained in:
Alexander Ryzhov 2017-06-04 19:39:15 +03:00
parent 2098368417
commit b48846506f

View File

@ -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;