diff options
author | 2012-08-21 10:32:38 +0000 | |
---|---|---|
committer | 2012-08-21 10:32:38 +0000 | |
commit | dbc306273c8aa58883be75ce6d797a81054124a2 (patch) | |
tree | 530bdd826323eece8f9c14f673db87ff35cc9712 | |
parent | xterm won't reach version 500 for a while so set that as the upper limit. (diff) | |
download | wireguard-openbsd-dbc306273c8aa58883be75ce6d797a81054124a2.tar.xz wireguard-openbsd-dbc306273c8aa58883be75ce6d797a81054124a2.zip |
Missing "-q" in usage().
ok espie@
-rw-r--r-- | usr.bin/pkill/pkill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c index e97026deecb..a507f46b9e1 100644 --- a/usr.bin/pkill/pkill.c +++ b/usr.bin/pkill/pkill.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkill.c,v 1.29 2012/08/21 06:28:36 espie Exp $ */ +/* $OpenBSD: pkill.c,v 1.30 2012/08/21 10:32:38 ajacoutot Exp $ */ /* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */ /*- @@ -436,9 +436,9 @@ usage(void) const char *ustr; if (pgrep) - ustr = "[-flnovx] [-d delim]"; + ustr = "[-flnoqvx] [-d delim]"; else - ustr = "[-signal] [-flnovx]"; + ustr = "[-signal] [-flnoqvx]"; fprintf(stderr, "usage: %s %s [-G gid] [-g pgrp] [-P ppid] [-s sid]" "\n\t[-T rtable] [-t tty] [-U uid] [-u euid] [pattern ...]\n", |