mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-03-31 18:25:43 +00:00
CLI: Fix getopt program names
these are output by getopt in error messages
This commit is contained in:
@@ -116,7 +116,7 @@ class LocalClientManager extends ClientManager {
|
||||
int dropX1000 = 0, jitter = 0, latency = 0;
|
||||
int port = ClientManagerFacadeImpl.DEFAULT_PORT;
|
||||
boolean error = false;
|
||||
Getopt g = new Getopt("router", args, "d:j:l:p:");
|
||||
Getopt g = new Getopt("LocalClientManager", args, "d:j:l:p:");
|
||||
try {
|
||||
int c;
|
||||
while ((c = g.getopt()) != -1) {
|
||||
|
||||
Reference in New Issue
Block a user