diff options
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 9a7073ed811..242a60c9871 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.267 2002/12/01 19:54:32 mcbride Exp $ */ +/* $OpenBSD: pf.c,v 1.268 2002/12/03 15:52:33 mickey 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--; |