summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2007-10-20 18:08:58 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2007-10-20 18:08:58 +0000
commit8261c76bcfd28697dd2ea98e05667007634d9bd5 (patch)
tree96d0e04589a52e75dab1af79217a428e1c04aaaa /usr.bin
parent018b3e58a7c0962cea1605ef4b4114733465fc7a (diff)
an usage message should fit on a 80-column display
ok jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/netstat/main.c7
-rw-r--r--usr.bin/split/split.c10
2 files changed, 9 insertions, 8 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c
index 267b0a32f2a..36603344b68 100644
--- a/usr.bin/netstat/main.c
+++ b/usr.bin/netstat/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.68 2007/07/25 11:50:47 claudio Exp $ */
+/* $OpenBSD: main.c,v 1.69 2007/10/20 18:08:57 sobrado Exp $ */
/* $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */
/*
@@ -40,7 +40,7 @@ char copyright[] =
#if 0
static char sccsid[] = "from: @(#)main.c 8.4 (Berkeley) 3/1/94";
#else
-static char *rcsid = "$OpenBSD: main.c,v 1.68 2007/07/25 11:50:47 claudio Exp $";
+static char *rcsid = "$OpenBSD: main.c,v 1.69 2007/10/20 18:08:57 sobrado Exp $";
#endif
#endif /* not lint */
@@ -636,7 +636,8 @@ usage(void)
{
(void)fprintf(stderr,
"usage: %s [-Aan] [-f address_family] [-M core] [-N system]\n"
- " %s [-bdFgilmnqrstu] [-f address_family] [-M core] [-N system] [-T tableid]\n"
+ " %s [-bdFgilmnqrstu] [-f address_family] [-M core] [-N system]\n"
+ " [-T tableid]\n"
" %s [-bdn] [-I interface] [-M core] [-N system] [-w wait]\n"
" %s [-M core] [-N system] -P pcbaddr\n"
" %s [-s] [-M core] [-N system] [-p protocol]\n"
diff --git a/usr.bin/split/split.c b/usr.bin/split/split.c
index eea4ae8fa47..48956318f95 100644
--- a/usr.bin/split/split.c
+++ b/usr.bin/split/split.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: split.c,v 1.15 2007/09/25 11:20:34 chl Exp $ */
+/* $OpenBSD: split.c,v 1.16 2007/10/20 18:08:57 sobrado Exp $ */
/* $NetBSD: split.c,v 1.5 1995/08/31 22:22:05 jtc Exp $ */
/*
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94";
#else
-static char rcsid[] = "$OpenBSD: split.c,v 1.15 2007/09/25 11:20:34 chl Exp $";
+static char rcsid[] = "$OpenBSD: split.c,v 1.16 2007/10/20 18:08:57 sobrado Exp $";
#endif
#endif /* not lint */
@@ -326,8 +326,8 @@ usage(void)
{
extern char *__progname;
- (void)fprintf(stderr, "usage: %s [-a suffix_length] "
- "[-b byte_count[k|m] | -l line_count | -p pattern] [file [name]]\n",
- __progname);
+ (void)fprintf(stderr, "usage: %s [-a suffix_length]\n"
+ " [-b byte_count[k|m] | -l line_count | -p pattern] "
+ "[file [name]]\n", __progname);
exit(EX_USAGE);
}