summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordhartmei <dhartmei@openbsd.org>2003-05-17 21:15:23 +0000
committerdhartmei <dhartmei@openbsd.org>2003-05-17 21:15:23 +0000
commit42c352f543ff5ef5b1347d66b9ec1a271345e9a9 (patch)
treeb0c0331a6bbb70738729aed5f0533da1de939046
parentDon't build libperl separately in the libs pass, just build it when (diff)
downloadwireguard-openbsd-42c352f543ff5ef5b1347d66b9ec1a271345e9a9.tar.xz
wireguard-openbsd-42c352f543ff5ef5b1347d66b9ec1a271345e9a9.zip
Correct two comment typos.
-rw-r--r--sys/net/pf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c
index fb2a7b96e36..d00781ac12a 100644
--- a/sys/net/pf.c
+++ b/sys/net/pf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf.c,v 1.357 2003/05/17 03:04:45 mcbride Exp $ */
+/* $OpenBSD: pf.c,v 1.358 2003/05/17 21:15:23 dhartmei Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -2225,7 +2225,7 @@ pf_test_tcp(struct pf_rule **rm, struct pf_state **sm, int direction,
((r->rule_flag & PFRULE_RETURNRST) ||
(r->rule_flag & PFRULE_RETURNICMP) ||
(r->rule_flag & PFRULE_RETURN))) {
- /* undo NAT/RST changes, if they have taken place */
+ /* undo NAT changes, if they have taken place */
if (nat != NULL) {
pf_change_ap(saddr, &th->th_sport, pd->ip_sum,
&th->th_sum, &baddr, bport, 0, af);
@@ -2534,7 +2534,7 @@ pf_test_udp(struct pf_rule **rm, struct pf_state **sm, int direction,
if ((r->action == PF_DROP) &&
((r->rule_flag & PFRULE_RETURNICMP) ||
(r->rule_flag & PFRULE_RETURN))) {
- /* undo NAT/RST changes, if they have taken place */
+ /* undo NAT changes, if they have taken place */
if (nat != NULL) {
pf_change_ap(saddr, &uh->uh_sport, pd->ip_sum,
&uh->uh_sum, &baddr, bport, 1, af);