diff options
author | 2008-06-11 02:54:05 +0000 | |
---|---|---|
committer | 2008-06-11 02:54:05 +0000 | |
commit | 6d493e67a015da827d2418fade5fea1319251abe (patch) | |
tree | e5f598430ee1c95f19acaaf98d7b84fc76561e57 /sys | |
parent | store a pointer to the stack side state key in the mbuf packet (diff) | |
download | wireguard-openbsd-6d493e67a015da827d2418fade5fea1319251abe.tar.xz wireguard-openbsd-6d493e67a015da827d2418fade5fea1319251abe.zip |
yuck, fix a last minute collision
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/pf.c | 4 |
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; |