CLI: Fix getopt program names

these are output by getopt in error messages
This commit is contained in:
zzz
2024-06-05 09:05:51 -04:00
parent 5c8ddbe26a
commit a0f92b2e28
5 changed files with 6 additions and 6 deletions

View File

@@ -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) {