summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2008-06-11 02:54:06 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2008-06-11 02:54:06 +0000
commitbe0a26acebcbc8e700ac55422bbb558b346893cf (patch)
treee8c8987a4cdeda098e4f766be1ab6f1e947f59f3 /sys/net
parentb109f49576cfdace334edadcae3f91a9a636033d (diff)
yuck, fix a last minute collision
Diffstat (limited to 'sys/net')
-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;