aboutsummaryrefslogtreecommitdiff
path: root/ge.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-08-29 10:44:08 +0000
committerOmar Polo <op@omarpolo.com>2023-08-29 10:44:08 +0000
commit60ff0ebcb5cda575de9d119e2af9bc3034903f53 (patch)
tree3efdc6a7fbd17729756ebb495cd313b4ad7b7030 /ge.c
parent23e92df733278366c3204e9536e3785c30493f4d (diff)
gemexp doesn't have -v; remove from getopt and usage()
Diffstat (limited to 'ge.c')
-rw-r--r--ge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ge.c b/ge.c
index 6b23631..6cede75 100644
--- a/ge.c
+++ b/ge.c
@@ -248,7 +248,7 @@ usage(void)
{
fprintf(stderr,
"Version: " GE_STRING "\n"
- "Usage: %s [-hVv] [-d certs-dir] [-H hostname] [-p port] [dir]\n",
+ "Usage: %s [-hV] [-d certs-dir] [-H hostname] [-p port] [dir]\n",
getprogname());
exit(1);
}
@@ -272,7 +272,7 @@ main(int argc, char **argv)
/* ge doesn't do privsep so no privsep crypto engine. */
conf->use_privsep_crypto = 0;
- while ((ch = getopt_long(argc, argv, "d:H:hp:Vv", opts, NULL)) != -1) {
+ while ((ch = getopt_long(argc, argv, "d:H:hp:V", opts, NULL)) != -1) {
switch (ch) {
case 'd':
certs_dir = optarg;