diff options
author | 2002-11-23 23:00:32 +0000 | |
---|---|---|
committer | 2002-11-23 23:00:32 +0000 | |
commit | 7f6dab2434f603aafe5ac48ac614aa0d1a5c17a2 (patch) | |
tree | f299bbde12f39ae9c89eeae4dae9b158cbe981af | |
parent | KNF (diff) | |
download | wireguard-openbsd-7f6dab2434f603aafe5ac48ac614aa0d1a5c17a2.tar.xz wireguard-openbsd-7f6dab2434f603aafe5ac48ac614aa0d1a5c17a2.zip |
sigh
-rw-r--r-- | sbin/pfctl/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index b6f8ea86f67..eb4e81ad65d 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.208 2002/11/23 22:57:54 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.209 2002/11/23 23:00:32 deraadt Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -437,7 +437,7 @@ scrubrule : SCRUB dir interface af fromto nodf minttl maxmss fragcache if ($3) { if ($3->not) { - yyerror("scrub rules don't support " + yyerror("scrub rules do not support " "'! <if>'"); YYERROR; } @@ -2768,7 +2768,7 @@ expand_nat(struct pf_nat *n, TAILQ_INIT(&n->rpool.list); for (h = rpool_hosts; h; h = h->next) { - pa = calloc(1, sizeof(struct pf_pooladdr)); + pa = calloc(1, sizeof(struct pf_pooladdr)); if (pa == NULL) { yyerror("calloc"); error++; |