diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1999-09-17 14:58:43 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1999-09-17 14:58:43 +0000 |
commit | 3f0d662a67e3a71ad1554b74c3742cd2f3e81196 (patch) | |
tree | f22b0931f127ee5f69812c1d93b598932d261997 /usr.sbin/chown/chown.c | |
parent | 2cebf2397e8adad59e3f7dd275955b53e64ae5c5 (diff) |
fix usage() string
Diffstat (limited to 'usr.sbin/chown/chown.c')
-rw-r--r-- | usr.sbin/chown/chown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c index 9ac5fa35053..d230fad86f2 100644 --- a/usr.sbin/chown/chown.c +++ b/usr.sbin/chown/chown.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chown.c,v 1.10 1997/09/20 12:44:29 deraadt Exp $ */ +/* $OpenBSD: chown.c,v 1.11 1999/09/17 14:58:42 kstailey Exp $ */ /* * Copyright (c) 1988, 1993, 1994 @@ -41,7 +41,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)chown.c 8.8 (Berkeley) 4/4/94"; */ -static char *rcsid = "$Id: chown.c,v 1.10 1997/09/20 12:44:29 deraadt Exp $"; +static char *rcsid = "$Id: chown.c,v 1.11 1999/09/17 14:58:42 kstailey Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -233,7 +233,7 @@ usage() { (void)fprintf(stderr, - "usage: %s [-R [-H | -L | -P]] [-f] %s file ...\n", + "usage: %s [-R [-H | -L | -P]] [-f] [-h] %s file ...\n", __progname, ischown ? "[owner][:group]" : "group"); exit(1); } |