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
@@ -856,7 +856,7 @@ public class MetaInfo
String announce = null;
List<String> url_list = null;
String comment = null;
Getopt g = new Getopt("Storage", args, "a:c:m:w:");
Getopt g = new Getopt("MetaInfo", args, "a:c:m:w:");
try {
int c;
while ((c = g.getopt()) != -1) {