diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2017-04-23 07:41:26 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2017-04-23 07:41:26 +0000 |
commit | b950a5e7969d2c0cba81d85ecc8f5e14484cf7ae (patch) | |
tree | 2e2702166843b23407a49f1d2cd7496b33f9dc06 /sbin/pfctl | |
parent | 7a6443a6bd877d2d087278a23e34c4bc95923aba (diff) |
oops, this was meant to be committed with the pfctl.8 change:
sync usage() with SYNOPSIS;
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 895577e6833..0ede855616d 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.340 2017/04/21 23:22:49 yasuoka Exp $ */ +/* $OpenBSD: pfctl.c,v 1.341 2017/04/23 07:41:25 jmc Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -239,13 +239,13 @@ usage(void) extern char *__progname; fprintf(stderr, "usage: %s [-deghnPqrvz] ", __progname); - fprintf(stderr, "[-a anchor] [-D macro=value] [-F modifier]\n"); - fprintf(stderr, "\t[-f file] [-i interface] [-K host | network]\n"); - fprintf(stderr, "\t[-k host | network | label | id] "); - fprintf(stderr, "[-L statefile] [-o level] [-p device]\n"); - fprintf(stderr, "\t[-S statefile] [-s modifier [-R id]] "); - fprintf(stderr, "[-t table -T command [address ...]]\n"); - fprintf(stderr, "\t[-V rdomain] [-x level]\n"); + fprintf(stderr, "[-a anchor] [-D macro=value] [-F modifier]"); + fprintf(stderr, " [-f file]\n"); + fprintf(stderr, "\t[-i interface] [-K key] [-k key] [-L statefile]"); + fprintf(stderr, " [-o level]\n"); + fprintf(stderr, "\t[-p device] [-S statefile] [-s modifier [-R id]]\n"); + fprintf(stderr, "\t[-t table -T command [address ...]]"); + fprintf(stderr, " [-V rdomain] [-x level]\n"); exit(1); } |