summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2008-06-11 02:54:05 +0000
committerhenning <henning@openbsd.org>2008-06-11 02:54:05 +0000
commit6d493e67a015da827d2418fade5fea1319251abe (patch)
treee5f598430ee1c95f19acaaf98d7b84fc76561e57
parentstore a pointer to the stack side state key in the mbuf packet (diff)
downloadwireguard-openbsd-6d493e67a015da827d2418fade5fea1319251abe.tar.xz
wireguard-openbsd-6d493e67a015da827d2418fade5fea1319251abe.zip
yuck, fix a last minute collision
-rw-r--r--sys/net/pf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c
index 02188aaf128..b2d142a1274 100644
--- a/sys/net/pf.c
+++ b/sys/net/pf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf.c,v 1.590 2008/06/11 02:46:34 henning Exp $ */
+/* $OpenBSD: pf.c,v 1.591 2008/06/11 02:54:05 henning Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -4081,7 +4081,7 @@ pf_test_state_tcp(struct pf_state **state, int direction, struct pfi_kif *kif,
key.port[0] = th->th_dport;
}
- STATE_LOOKUP(kif, &key, direction, *state);
+ STATE_LOOKUP(kif, &key, direction, *state, m);
if (direction == (*state)->direction) {
src = &(*state)->src;