diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-03-26 20:24:52 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-03-26 20:24:52 +0000 |
commit | 9097160e318bc1d5c0322617a0d5a27398137046 (patch) | |
tree | 5cc43bc84e05db7bee4211906c7a5bff4fcfde0c /sys/net | |
parent | 27acdfd63f6305a453113b9ab926271f446aee9d (diff) |
Change default logging level from none to urgent. Should never print
anything, and if it does, it should be reported.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index 0ada5f5b391..e98c6a10e39 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.196 2002/03/25 23:33:13 dhartmei Exp $ */ +/* $OpenBSD: pf.c,v 1.197 2002/03/26 20:24:51 dhartmei Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1022,6 +1022,7 @@ pfattach(int num) timeout_add(&pf_expire_to, pftm_interval * hz); pf_normalize_init(); + pf_status.debug = PF_DEBUG_URGENT; } int |