diff options
author | 2011-11-08 16:49:32 +0000 | |
---|---|---|
committer | 2011-11-08 16:49:32 +0000 | |
commit | 3d7fea665202adde67dde9ed982d94fa920a142d (patch) | |
tree | 5999f8330b565a0833322e9b1ed9485e8d1f4fdb | |
parent | lookup (n.) -> look up (v.) (i.e. to look sth up); (diff) | |
download | wireguard-openbsd-3d7fea665202adde67dde9ed982d94fa920a142d.tar.xz wireguard-openbsd-3d7fea665202adde67dde9ed982d94fa920a142d.zip |
- put -i in the right place
- prevent an erroneous space in the formatting of -D
-rw-r--r-- | sbin/ipsecctl/ipsecctl.8 | 7 | ||||
-rw-r--r-- | sbin/ipsecctl/ipsecctl.c | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/sbin/ipsecctl/ipsecctl.8 b/sbin/ipsecctl/ipsecctl.8 index 1bc5293a1cf..fd0085725b7 100644 --- a/sbin/ipsecctl/ipsecctl.8 +++ b/sbin/ipsecctl/ipsecctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ipsecctl.8,v 1.27 2011/11/08 13:28:42 henning Exp $ +.\" $OpenBSD: ipsecctl.8,v 1.28 2011/11/08 16:49:32 jmc Exp $ .\" .\" Copyright (c) 2004, 2005 Hans-Joerg Hoexer <hshoexer@openbsd.org> .\" @@ -23,10 +23,9 @@ .Sh SYNOPSIS .Nm ipsecctl .Op Fl dFkmnv -.Oo Fl D Ar macro Ns = -.Ar value Oc -.Op Fl i Ar fifo +.Op Fl D Ar macro Ns = Ns Ar value .Op Fl f Ar file +.Op Fl i Ar fifo .Op Fl s Ar modifier .Sh DESCRIPTION The diff --git a/sbin/ipsecctl/ipsecctl.c b/sbin/ipsecctl/ipsecctl.c index afc5135e180..feff5c074ff 100644 --- a/sbin/ipsecctl/ipsecctl.c +++ b/sbin/ipsecctl/ipsecctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsecctl.c,v 1.74 2011/11/08 13:26:06 henning Exp $ */ +/* $OpenBSD: ipsecctl.c,v 1.75 2011/11/08 16:49:32 jmc Exp $ */ /* * Copyright (c) 2004, 2005 Hans-Joerg Hoexer <hshoexer@openbsd.org> * @@ -616,7 +616,7 @@ usage(void) extern char *__progname; fprintf(stderr, "usage: %s [-dFkmnv] [-D macro=value] [-f file]" - " [-s modifier] [-i fifo]\n", __progname); + " [-i fifo] [-s modifier]\n", __progname); exit(1); } |