Arg! Someone fixed the synopsis in -stable's newsyslog.8, but not

in -current.  However, they fixed both the ordering and the missing -F
flag.  Merge from 22 and fix ordering here, too.
This commit is contained in:
Tim Vanderhoek 1998-05-10 19:04:06 +00:00
parent b813e9a54a
commit 28a9b05b87
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35917
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
.\" This file contains changes from the Open Software Foundation. .\" This file contains changes from the Open Software Foundation.
.\" .\"
.\" from: @(#)newsyslog.8 .\" from: @(#)newsyslog.8
.\" $Id: newsyslog.8,v 1.11 1998/03/23 08:25:29 charnier Exp $ .\" $Id: newsyslog.8,v 1.12 1998/05/10 18:41:16 hoek Exp $
.\" .\"
.\" Copyright 1988, 1989 by the Massachusetts Institute of Technology .\" Copyright 1988, 1989 by the Massachusetts Institute of Technology
.\" .\"
@ -25,7 +25,7 @@
.Nd maintain system log files to manageable sizes .Nd maintain system log files to manageable sizes
.Sh SYNOPSIS .Sh SYNOPSIS
.Nm newsyslog .Nm newsyslog
.Op Fl rnvF .Op Fl Fnrv
.Op Fl f Ar config_file .Op Fl f Ar config_file
.Sh DESCRIPTION .Sh DESCRIPTION
.Nm Newsyslog .Nm Newsyslog

View file

@ -27,7 +27,7 @@ provided "as is" without express or implied warranty.
#ifndef lint #ifndef lint
static const char rcsid[] = static const char rcsid[] =
"$Id: newsyslog.c,v 1.16 1998/03/14 22:28:25 pst Exp $"; "$Id: newsyslog.c,v 1.17 1998/05/10 18:47:50 hoek Exp $";
#endif /* not lint */ #endif /* not lint */
#ifndef CONF #ifndef CONF
@ -226,7 +226,7 @@ static void PRS(argc,argv)
static void usage() static void usage()
{ {
fprintf(stderr, "usage: newsyslog [-nrvF] [-f config-file]\n"); fprintf(stderr, "usage: newsyslog [-Fnrv] [-f config-file]\n");
exit(1); exit(1);
} }