Merge pull request #885 from ryzhovau/spaces

Cosmetic changes for "Host XXX.YY not inside I2P network" message
This commit is contained in:
R4SAS 2017-06-04 19:57:55 +03:00 committed by GitHub
commit ca121f80ee

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;