diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2002-12-01 01:20:03 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2002-12-01 01:20:03 +0000 |
commit | 3ffafeae3f451f05888d792a1e9d9c29a382c301 (patch) | |
tree | 947c90cb7df19ec28867446970a6b1a0cb552ca4 /sys/net/pf.c | |
parent | 21e1414d3a2f1e9288d682f38b80e04147b5a6a1 (diff) |
pfsync currently causes kernel faults, so we don't want to call these functions
ok dhartmei@
Diffstat (limited to 'sys/net/pf.c')
-rw-r--r-- | sys/net/pf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index fc8dd350d78..a0a4482bc07 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.265 2002/11/29 18:25:22 mickey Exp $ */ +/* $OpenBSD: pf.c,v 1.266 2002/12/01 01:20:02 mcbride Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -447,7 +447,7 @@ pf_insert_state(struct pf_state *state) pf_status.fcounters[FCNT_STATE_INSERT]++; pf_status.states++; #if NPFSYNC - pfsync_insert_state(state); + /* pfsync_insert_state(state); */ #endif return (0); } @@ -495,7 +495,7 @@ pf_purge_expired_states(void) RB_REMOVE(pf_state_tree, &tree_lan_ext, peer); #if NPFSYNC - pfsync_delete_state(cur->state); + /* pfsync_delete_state(cur->state); */ #endif if (cur->state->rule.ptr != NULL) cur->state->rule.ptr->states--; |