diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-07-16 11:48:47 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-07-16 11:48:47 +0000 |
commit | 59898bbba224dd0776f7bc2a3ab883b2587a1686 (patch) | |
tree | 48a5f59add3c7d928e65b60ba9eec99939cfb000 /usr.bin/pkill/pkill.c | |
parent | 886f259642736197794c9d841ec5c7c93d3a4d38 (diff) |
sort options and sync usage();
Diffstat (limited to 'usr.bin/pkill/pkill.c')
-rw-r--r-- | usr.bin/pkill/pkill.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c index 9759d65fdc0..4e82a73a6ed 100644 --- a/usr.bin/pkill/pkill.c +++ b/usr.bin/pkill/pkill.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkill.c,v 1.13 2005/05/20 07:26:49 otto Exp $ */ +/* $OpenBSD: pkill.c,v 1.14 2005/07/16 11:48:46 jmc Exp $ */ /* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */ /*- @@ -38,7 +38,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: pkill.c,v 1.13 2005/05/20 07:26:49 otto Exp $"; +static const char rcsid[] = "$OpenBSD: pkill.c,v 1.14 2005/07/16 11:48:46 jmc Exp $"; #endif /* !lint */ #include <sys/types.h> @@ -421,8 +421,8 @@ usage(void) else ustr = "[-signal] [-fnvx]"; - fprintf(stderr, "usage: %s %s [-G gid] [-P ppid] [-U uid] [-g pgrp] " - "[-s sid] [-t tty] [-u euid] pattern ...\n", __progname, ustr); + fprintf(stderr, "usage: %s %s [-G gid] [-g pgrp] [-P ppid] [-s sid] " + "[-t tty]\n\t[-U uid] [-u euid] [pattern ...]\n", __progname, ustr); exit(STATUS_ERROR); } |