1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

Add -f option to program's usage(), fix manpage's SYNOPSIS.

This commit is contained in:
Ruslan Ermilov 2006-09-17 22:49:26 +00:00
parent a3ec17db37
commit 5ef35a9854
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=162388
2 changed files with 3 additions and 4 deletions

View File

@ -33,9 +33,8 @@
.Nd "device state change daemon"
.Sh SYNOPSIS
.Nm
.Op Fl Dd
.Op Fl Ddn
.Op Fl f Ar file
.Op Fl n
.Sh DESCRIPTION
The
.Nm
@ -43,7 +42,7 @@ daemon provides a way to have userland programs run when certain
kernel events happen.
.Pp
The following options are accepted.
.Bl -tag -width indent-two
.Bl -tag -width ".Fl f Ar file"
.It Fl D
Enable debugging messages.
.It Fl d

View File

@ -902,7 +902,7 @@ gensighand(int)
static void
usage()
{
fprintf(stderr, "usage: %s [-Ddn]\n", getprogname());
fprintf(stderr, "usage: %s [-Ddn] [-f file]\n", getprogname());
exit(1);
}