Update usage() to refect the current state of ipmon.

PR:		238816
MFC after:	1 week
This commit is contained in:
Cy Schubert 2019-06-27 02:43:30 +00:00
parent 74bc7fc0b4
commit accc4633db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=349450

View File

@ -1438,8 +1438,11 @@ static void print_ipflog(conf, buf, blen)
static void usage(prog)
char *prog;
{
fprintf(stderr, "%s: [-NFhstvxX] [-f <logfile>]\n", prog);
exit(1);
fprintf(stderr, "Usage: %s [ -abDFhnpstvxX ] [ -B <binary-logfile> ] [ -C <config-file> ]\n"
"\t[ -f <device> ] [ -L <facility> ] [ -N <device> ]\n"
"\t[ -o [NSI] ] [ -O [NSI] ] [ -P <pidfile> ] [ -S <device> ]\n"
"\t[ <filename> ]\n", prog);
exit(-1);
}