diff options
author | dwmalone <dwmalone@FreeBSD.org> | 2002-09-15 15:37:50 +0000 |
---|---|---|
committer | dwmalone <dwmalone@FreeBSD.org> | 2002-09-15 15:37:50 +0000 |
commit | fc1f61ef5f36cc7ffda309d97678c3771081374a (patch) | |
tree | ed80b3138581282e936a6caff853dcab68c0a067 /usr.sbin/rarpd | |
parent | 6acc49e3bd177eb1e4787e9173c8443ceda1c25e (diff) | |
download | FreeBSD-src-fc1f61ef5f36cc7ffda309d97678c3771081374a.zip FreeBSD-src-fc1f61ef5f36cc7ffda309d97678c3771081374a.tar.gz |
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
Diffstat (limited to 'usr.sbin/rarpd')
-rw-r--r-- | usr.sbin/rarpd/rarpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rarpd/rarpd.c b/usr.sbin/rarpd/rarpd.c index 57359ef..bbe1b93 100644 --- a/usr.sbin/rarpd/rarpd.c +++ b/usr.sbin/rarpd/rarpd.c @@ -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); } |