diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2008-12-06 13:18:14 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2008-12-06 13:18:14 +0000 |
commit | a95459c15a84fb9c2f77e26590bf0c03c2ea176c (patch) | |
tree | c318c7d618aac749e973477633944e2b50dbb514 /usr.sbin/bgpctl/bgpctl.c | |
parent | 199e39be7f104c096853e7b32d37a517c7e6e4a1 (diff) |
the ellipsis allows more than one argument being specified.
discussed with gilles@
ok jmc@
Diffstat (limited to 'usr.sbin/bgpctl/bgpctl.c')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 65a3e0f28a1..e911bb1a4e4 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.134 2008/06/07 20:23:15 henning Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.135 2008/12/06 13:18:12 sobrado Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -89,8 +89,8 @@ usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s [-n] [-s socket] " - "command [arguments ...]\n", __progname); + fprintf(stderr, "usage: %s [-n] [-s socket] command [argument ...]\n", + __progname); exit(1); } |