Document "debug" in usage().

This commit is contained in:
maxv 2018-04-13 17:43:37 +00:00
parent 6bf38be19f
commit 82288565a0
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: npfctl.c,v 1.54 2017/10/30 04:53:43 ozaki-r Exp $ */
/* $NetBSD: npfctl.c,v 1.55 2018/04/13 17:43:37 maxv Exp $ */
/*-
* Copyright (c) 2009-2014 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: npfctl.c,v 1.54 2017/10/30 04:53:43 ozaki-r Exp $");
__RCSID("$NetBSD: npfctl.c,v 1.55 2018/04/13 17:43:37 maxv Exp $");
#include <sys/stat.h>
#include <sys/types.h>
@ -155,6 +155,9 @@ usage(void)
fprintf(stderr,
"\t%s list [-46hNnw] [-i <ifname>]\n",
progname);
fprintf(stderr,
"\t%s debug [<rule-file>] [<raw-output>]\n",
progname);
exit(EXIT_FAILURE);
}