diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 08:52:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 08:52:19 +0000 |
commit | a5c237ae679ec72172835913259b126bf4717461 (patch) | |
tree | 71ef45c83b7328e56c6190ddff85209e1f3554b4 /sbin | |
parent | 2d65f5dfeea5deb84199d356fe331b4bd6e61306 (diff) |
fix usage
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/newfs/newfs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index 4c0a5b30909..4cb953e1778 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs.c,v 1.6 1996/12/04 08:38:59 deraadt Exp $ */ +/* $OpenBSD: newfs.c,v 1.7 1996/12/04 08:52:18 deraadt Exp $ */ /* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)newfs.c 8.8 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: newfs.c,v 1.6 1996/12/04 08:38:59 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: newfs.c,v 1.7 1996/12/04 08:52:18 deraadt Exp $"; #endif #endif /* not lint */ @@ -752,8 +752,9 @@ usage() fprintf(stderr, "\t-n number of distinguished rotational positions\n"); fprintf(stderr, "\t-o optimization preference (`space' or `time')\n"); fprintf(stderr, "\t-p spare sectors per track\n"); - fprintf(stderr, "\t-s file system size (sectors)\n"); fprintf(stderr, "\t-r revolutions/minute\n"); + fprintf(stderr, "\t-s file system size (sectors)\n"); + fprintf(stderr, "\t-t file system type\n"); fprintf(stderr, "\t-u sectors/track\n"); fprintf(stderr, "\t-x spare sectors per cylinder\n"); fprintf(stderr, "\t-z tracks/cylinder\n"); |