diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnel.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnel.java index 95c5285d51..5eadd9d8c8 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnel.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnel.java @@ -461,7 +461,7 @@ public class I2PTunnel extends EventDispatcherImpl implements Logging { " client [, []\n" + " clientoptions [-acx] [key=value ]*\n" + " close [forced|destroy] |all\n" + - " config [-s] \n" + + " config [-s] \n" + " connectclient [] []\n" + " genkeys []\n" + " gentextkeys\n" + @@ -1346,7 +1346,7 @@ public class I2PTunnel extends EventDispatcherImpl implements Logging { } if (i < args.length) port = args[i]; - l.log("New setting: " + host + ' ' + port + (ssl ? " SSL" : " non-SSL")); + l.log("New I2CP settings: " + host + ' ' + port + (ssl ? " SSL" : " non-SSL")); notifyEvent("configResult", "ok"); } else { boolean ssl = Boolean.parseBoolean(_clientOptions.getProperty("i2cp.SSL")); @@ -1354,7 +1354,7 @@ public class I2PTunnel extends EventDispatcherImpl implements Logging { " config [-s] [] []\n" + " Sets the address and port of the I2P router.\n" + " Use -s for SSL.\n" + - "Current setting: " + host + ' ' + port + (ssl ? " SSL" : " non-SSL")); + "Current I2CP settings: " + host + ' ' + port + (ssl ? " SSL" : " non-SSL")); notifyEvent("configResult", "error"); } }