diff options
author | hoek <hoek@FreeBSD.org> | 1998-05-10 18:47:50 +0000 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1998-05-10 18:47:50 +0000 |
commit | ff2ed8473c160dd743558c41a1ec2d0b28cf26db (patch) | |
tree | ea3b253fba0571305a7d129923d6b7c5a44c6a76 /usr.sbin/newsyslog | |
parent | 882abe1fe72c401ed2e1e456ed4fd6034849029e (diff) | |
download | FreeBSD-src-ff2ed8473c160dd743558c41a1ec2d0b28cf26db.zip FreeBSD-src-ff2ed8473c160dd743558c41a1ec2d0b28cf26db.tar.gz |
Fix the usage here, too (-F option).
Typo fix in comment ("Force the tim now matter what" s/tim/trim/)
Diffstat (limited to 'usr.sbin/newsyslog')
-rw-r--r-- | usr.sbin/newsyslog/newsyslog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c index 13fff30..d3a2443 100644 --- a/usr.sbin/newsyslog/newsyslog.c +++ b/usr.sbin/newsyslog/newsyslog.c @@ -27,7 +27,7 @@ provided "as is" without express or implied warranty. #ifndef lint static const char rcsid[] = - "$Id: newsyslog.c,v 1.15 1997/11/30 18:58:18 ache Exp $"; + "$Id: newsyslog.c,v 1.16 1998/03/14 22:28:25 pst Exp $"; #endif /* not lint */ #ifndef CONF @@ -89,7 +89,7 @@ struct conf_entry { int verbose = 0; /* Print out what's going on */ int needroot = 1; /* Root privs are necessary */ int noaction = 0; /* Don't do anything, just show it */ -int force = 0; /* Force the tim no matter what*/ +int force = 0; /* Force the trim no matter what*/ char *conf = CONF; /* Configuration file to use */ time_t timenow; pid_t syslog_pid; /* read in from /etc/syslog.pid */ @@ -226,7 +226,7 @@ static void PRS(argc,argv) static void usage() { - fprintf(stderr, "usage: newsyslog [-nrv] [-f config-file]\n"); + fprintf(stderr, "usage: newsyslog [-nrvF] [-f config-file]\n"); exit(1); } |