diff options
author | phk <phk@FreeBSD.org> | 2006-03-06 07:42:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2006-03-06 07:42:52 +0000 |
commit | 00fe26929235bada2f0e5637b6b0e10299f9c7ad (patch) | |
tree | 510d2779ad557bec2bb6f4ac14e078fd3cb56c8a /usr.sbin/watchdogd | |
parent | 2c76f6757ed83ab49320bc8add1d9717493b19ce (diff) | |
download | FreeBSD-src-00fe26929235bada2f0e5637b6b0e10299f9c7ad.zip FreeBSD-src-00fe26929235bada2f0e5637b6b0e10299f9c7ad.tar.gz |
Fix usage().
Submitted by: Adrian Steinmann <ast@marabu.ch>
Diffstat (limited to 'usr.sbin/watchdogd')
-rw-r--r-- | usr.sbin/watchdogd/watchdogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/watchdogd/watchdogd.c b/usr.sbin/watchdogd/watchdogd.c index 01ccdd6..5f8f0be 100644 --- a/usr.sbin/watchdogd/watchdogd.c +++ b/usr.sbin/watchdogd/watchdogd.c @@ -218,7 +218,7 @@ usage() if (is_daemon) fprintf(stderr, "usage: watchdogd [-d] [-e cmd] [-I file]\n"); else - fprintf(stderr, "usage: watchdog [-d] [-t]\n"); + fprintf(stderr, "usage: watchdog [-d] [-t timeout]\n"); exit(EX_USAGE); } |