Browse Source

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

Signed-off-by: Alexander Ryzhov <github@ryzhov-al.ru>
pull/885/head
Alexander Ryzhov 7 years ago
parent
commit
b48846506f
  1. 2
      libi2pd_client/HTTPProxy.cpp

2
libi2pd_client/HTTPProxy.cpp

@ -309,7 +309,7 @@ namespace proxy { @@ -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;

Loading…
Cancel
Save