aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/newsyslog
diff options
context:
space:
mode:
authorTim Vanderhoek <hoek@FreeBSD.org>1998-05-10 18:47:50 +0000
committerTim Vanderhoek <hoek@FreeBSD.org>1998-05-10 18:47:50 +0000
commitb813e9a54a6444baea51c4c4f9dcdea010d8690d (patch)
treef1ff2781a06ec8b9de809f5801afe11e08ffba5c /usr.sbin/newsyslog
parentcd6f8bd276faf93f38c09417db0405b7bc669bc2 (diff)
downloadsrc-b813e9a54a6444baea51c4c4f9dcdea010d8690d.tar.gz
src-b813e9a54a6444baea51c4c4f9dcdea010d8690d.zip
Fix the usage here, too (-F option).
Typo fix in comment ("Force the tim now matter what" s/tim/trim/)
Notes
Notes: svn path=/head/; revision=35915
Diffstat (limited to 'usr.sbin/newsyslog')
-rw-r--r--usr.sbin/newsyslog/newsyslog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c
index 13fff30d51e6..d3a24433febf 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);
}