diff options
author | 2001-06-28 20:30:53 +0000 | |
---|---|---|
committer | 2001-06-28 20:30:53 +0000 | |
commit | 3ada53e43f0d6558684ca762b6bfa0f7cd912241 (patch) | |
tree | a379b6fa140a488543d212810e16a8c174df83e7 | |
parent | '\0' terminated data[] is ok; ok markus@ (diff) | |
download | wireguard-openbsd-3ada53e43f0d6558684ca762b6bfa0f7cd912241.tar.xz wireguard-openbsd-3ada53e43f0d6558684ca762b6bfa0f7cd912241.zip |
usage() was out of date
-rw-r--r-- | sbin/pfctl/pfctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index d5019787d3a..a76fd5db68b 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.22 2001/06/27 21:54:47 kjell Exp $ */ +/* $OpenBSD: pfctl.c,v 1.23 2001/06/28 20:30:53 dhartmei Exp $ */ /* * Copyright (c) 2001, Daniel Hartmeier @@ -80,8 +80,8 @@ usage() { extern char *__progname; - fprintf(stderr, "usage: %s [-de] [-c set] [-l interface]", __progname); - fprintf(stderr, " [-N] [-n file] [-r file] [-s set] [-v] [-z]\n"); + fprintf(stderr, "usage: %s [-de] [-F set] [-l interface]", __progname); + fprintf(stderr, " [-n] [-N file] [-R file] [-s set] [-v]\n"); exit(1); } |