diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2008-12-31 15:22:28 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2008-12-31 15:22:28 +0000 |
commit | cc87c39861ab9946f3f853f568d1f3211ba61e4f (patch) | |
tree | 4aa2068ebe63bd9d884f1650a8bd930c4debb15f /usr.sbin/relayctl | |
parent | f921896d105957987f07fcaae85dc710ad033709 (diff) |
an ellipsis allows more than one argument being specified;
sync synopsis/usage.
Diffstat (limited to 'usr.sbin/relayctl')
-rw-r--r-- | usr.sbin/relayctl/relayctl.8 | 6 | ||||
-rw-r--r-- | usr.sbin/relayctl/relayctl.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/relayctl/relayctl.8 b/usr.sbin/relayctl/relayctl.8 index a57d471ba48..8bf8478fd8d 100644 --- a/usr.sbin/relayctl/relayctl.8 +++ b/usr.sbin/relayctl/relayctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: relayctl.8,v 1.22 2008/12/05 16:37:56 reyk Exp $ +.\" $OpenBSD: relayctl.8,v 1.23 2008/12/31 15:22:27 sobrado Exp $ .\" .\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: December 5 2008 $ +.Dd $Mdocdate: December 31 2008 $ .Dt RELAYCTL 8 .Os .Sh NAME @@ -23,7 +23,7 @@ .Sh SYNOPSIS .Nm .Ar command -.Op Ar arguments ... +.Op Ar argument ... .Sh DESCRIPTION The .Nm diff --git a/usr.sbin/relayctl/relayctl.c b/usr.sbin/relayctl/relayctl.c index d7b8f42d38e..5c5ee09cb58 100644 --- a/usr.sbin/relayctl/relayctl.c +++ b/usr.sbin/relayctl/relayctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: relayctl.c,v 1.35 2008/12/05 16:37:56 reyk Exp $ */ +/* $OpenBSD: relayctl.c,v 1.36 2008/12/31 15:22:27 sobrado Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -89,7 +89,7 @@ usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s <command> [arg [...]]\n", __progname); + fprintf(stderr, "usage: %s command [argument ...]\n", __progname); exit(1); } |