diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-09-22 00:32:49 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-09-22 00:32:49 +0000 |
commit | 57f181a8fcb7736c3c257f4f592e80e573d57ed4 (patch) | |
tree | 7138f626e78def74a3c3de58bf04e61ac7a4255b | |
parent | e082dcfb96c6577633f47f5cde1d3d7bbe0029c5 (diff) |
make the arguments match the format string in usage
ok yasuoka@
-rw-r--r-- | usr.sbin/npppd/npppdctl/npppdctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/npppd/npppdctl/npppdctl.c b/usr.sbin/npppd/npppdctl/npppdctl.c index 51472cd6e21..5623169d1d0 100644 --- a/usr.sbin/npppd/npppdctl/npppdctl.c +++ b/usr.sbin/npppd/npppdctl/npppdctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: npppdctl.c,v 1.5 2010/07/31 09:33:09 yasuoka Exp $ */ +/* $OpenBSD: npppdctl.c,v 1.6 2010/09/22 00:32:48 jsg Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* $Id: npppdctl.c,v 1.5 2010/07/31 09:33:09 yasuoka Exp $ */ +/* $Id: npppdctl.c,v 1.6 2010/09/22 00:32:48 jsg Exp $ */ #include <sys/types.h> #include <sys/param.h> #include <sys/socket.h> @@ -105,7 +105,7 @@ usage(void) "\t-r: Receive buffer size (default %d).\n" "\t-s: Show statistics informations instead of who.\n" "\t-u: Show 'since' field as unix time.\n", - progname, progname, progname, rcvbuf_sz); + progname, progname, rcvbuf_sz); } static void |