Add "-t" to useage message and comment. (The -t option was added

independently by Robert, but also proposed in the PR below).

PR:		38126
Submitted by:	Josh Elsasser <jre@vineyard.net>
MFC after:	1 month
This commit is contained in:
David Malone 2002-09-15 15:37:50 +00:00
parent 93f39ea88a
commit 8662984e5e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103347

View File

@ -33,8 +33,8 @@ static const char rcsid[] =
/*
* rarpd - Reverse ARP Daemon
*
* Usage: rarpd -a [ -dfsv ] [ hostname ]
* rarpd [ -dfsv ] interface [ hostname ]
* Usage: rarpd -a [ -dfsv ] [-t directory] [ hostname ]
* rarpd [ -dfsv ] [-t directory] interface [ hostname ]
*
* 'hostname' is optional solely for backwards compatibility with Sun's rarpd.
* Currently, the argument is ignored.
@ -399,7 +399,7 @@ init(char *target)
void
usage(void)
{
(void)fprintf(stderr, "usage: rarpd [-adfsv] [interface]\n");
(void)fprintf(stderr, "usage: rarpd [-adfsv] [-t directory] [interface]\n");
exit(1);
}