diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-18 23:03:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-18 23:03:33 +0000 |
commit | f778242c21486210c4818cb4842c31e186d71679 (patch) | |
tree | d85e11d71a9d8eb406a555e27b733336cbbce051 /bin | |
parent | 21c977a0737e42949c5f91ab4b8b85583b09f985 (diff) |
people who fail to update man pages and usage lines will henceforth be shot on sight
Diffstat (limited to 'bin')
-rw-r--r-- | bin/df/df.1 | 4 | ||||
-rw-r--r-- | bin/df/df.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/df/df.1 b/bin/df/df.1 index a81c5ea1140..019ef5d0dc1 100644 --- a/bin/df/df.1 +++ b/bin/df/df.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: df.1,v 1.7 1998/05/13 10:33:19 deraadt Exp $ +.\" $OpenBSD: df.1,v 1.8 1998/08/18 23:03:31 deraadt Exp $ .\" $NetBSD: df.1,v 1.12 1995/12/05 02:42:45 jtc Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 @@ -42,7 +42,7 @@ .Nd display free disk space .Sh SYNOPSIS .Nm df -.Op Fl hikln +.Op Fl hiklnP .Op Fl t Ar type .Op Ar file | Ar file_system ... .Sh DESCRIPTION diff --git a/bin/df/df.c b/bin/df/df.c index 689449de604..31831028fb6 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -1,4 +1,4 @@ -/* $OpenBSD: df.c,v 1.21 1998/08/17 21:33:05 deraadt Exp $ */ +/* $OpenBSD: df.c,v 1.22 1998/08/18 23:03:32 deraadt Exp $ */ /* $NetBSD: df.c,v 1.21.2.1 1995/11/01 00:06:11 jtc Exp $ */ /* @@ -49,7 +49,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)df.c 8.7 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: df.c,v 1.21 1998/08/17 21:33:05 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: df.c,v 1.22 1998/08/18 23:03:32 deraadt Exp $"; #endif #endif /* not lint */ @@ -531,6 +531,6 @@ bread(rfd, off, buf, cnt) void usage() { - (void)fprintf(stderr, "usage: df [-iklnP] [-t type] [file | file_system ...]\n"); + (void)fprintf(stderr, "usage: df [-hiklnP] [-t type] [file | file_system ...]\n"); exit(1); } |