add -V to usage(), and list it before -v in both SYNOPSIS and the
authorjmc <jmc@openbsd.org>
Mon, 29 Nov 2021 13:20:24 +0000 (13:20 +0000)
committerjmc <jmc@openbsd.org>
Mon, 29 Nov 2021 13:20:24 +0000 (13:20 +0000)
options list;

sbin/iked/iked.8
sbin/iked/iked.c

index faa7cfd..7134e54 100644 (file)
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iked.8,v 1.29 2021/11/29 12:27:18 tobhe Exp $
+.\" $OpenBSD: iked.8,v 1.30 2021/11/29 13:20:24 jmc Exp $
 .\"
 .\" Copyright (c) 2010 - 2014 Reyk Floeter <reyk@openbsd.org>
 .\"
@@ -22,7 +22,7 @@
 .Nd Internet Key Exchange version 2 (IKEv2) daemon
 .Sh SYNOPSIS
 .Nm iked
-.Op Fl dnSTtvV
+.Op Fl dnSTtVv
 .Op Fl D Ar macro Ns = Ns Ar value
 .Op Fl f Ar file
 .Op Fl p Ar udpencap_port
@@ -107,10 +107,10 @@ Disable NAT-Traversal and do not propose NAT-Traversal support to the peers.
 Enforce NAT-Traversal and only listen to NAT-Traversal messages.
 This option is only recommended for testing; the default is to
 negotiate NAT-Traversal with the peers.
-.It Fl v
-Produce more verbose output.
 .It Fl V
 Show the version and exit.
+.It Fl v
+Produce more verbose output.
 .El
 .Sh PUBLIC KEY AUTHENTICATION
 It is possible to store trusted public keys to make them directly
index b081015..621801c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: iked.c,v 1.60 2021/11/29 12:27:18 tobhe Exp $ */
+/*     $OpenBSD: iked.c,v 1.61 2021/11/29 13:20:24 jmc Exp $   */
 
 /*
  * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de>
@@ -58,7 +58,7 @@ usage(void)
 {
        extern char     *__progname;
 
-       fprintf(stderr, "usage: %s [-dnSTtv] [-D macro=value] "
+       fprintf(stderr, "usage: %s [-dnSTtVv] [-D macro=value] "
            "[-f file] [-p udpencap_port] [-s socket]\n", __progname);
        exit(1);
 }