summaryrefslogtreecommitdiff
path: root/sys/net/pf.c
diff options
context:
space:
mode:
authorDaniel Hartmeier <dhartmei@cvs.openbsd.org>2003-05-17 21:15:24 +0000
committerDaniel Hartmeier <dhartmei@cvs.openbsd.org>2003-05-17 21:15:24 +0000
commitbaf1e6a1ce9a916b0f8d80a7a2a8a0d81e95997a (patch)
treef4e6d173de3a7812a6398ec6cca6e7f1f33c7d8e /sys/net/pf.c
parentf11726733cef6f8957a893c0b64678f206c43757 (diff)
Correct two comment typos.
Diffstat (limited to 'sys/net/pf.c')
-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);