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

@@ -119,7 +119,7 @@ public class PrivateKeyFile {
double days = 365;
int mode = 0;
boolean error = false;
Getopt g = new Getopt("pkf", args, "t:nuxhse:c:a:o:d:r:p:b:y:z:w:");
Getopt g = new Getopt("PrivateKeyFile", args, "t:nuxhse:c:a:o:d:r:p:b:y:z:w:v:V:");
int c;
while ((c = g.getopt()) != -1) {
switch (c) {