diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-12-08 08:26:34 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-12-08 08:26:34 +0000 |
commit | 9c754fc7e81bdc37879890e2b02cf4c121b485ac (patch) | |
tree | ef1619a3af85178bec04b4313cb410d5cb03e473 /sys/net | |
parent | da3e327d76817f3d36ea42bbef28c21a630f54e2 (diff) |
move "pf: key search" and "pf: key setup" messages to PF_DEBUG_NOISY
instead of MISC. "makes a little bit more sense" henning@
Diffstat (limited to 'sys/net')
-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 e8d0bd67c4f..295542377cf 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.677 2009/11/26 14:34:49 dlg Exp $ */ +/* $OpenBSD: pf.c,v 1.678 2009/12/08 08:26:33 sthen Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -817,7 +817,7 @@ pf_state_key_setup(struct pf_pdesc *pd, *skw = sk2; } - if (pf_status.debug >= PF_DEBUG_MISC) { + if (pf_status.debug >= PF_DEBUG_NOISY) { printf("pf: key setup: "); pf_print_state_parts(NULL, *skw, *sks); printf("\n"); @@ -920,7 +920,7 @@ pf_find_state(struct pfi_kif *kif, struct pf_state_key_cmp *key, u_int dir, struct pf_state_item *si; pf_status.fcounters[FCNT_STATE_SEARCH]++; - if (pf_status.debug >= PF_DEBUG_MISC) { + if (pf_status.debug >= PF_DEBUG_NOISY) { printf("pf: key search, if=%s: ", kif->pfik_name); pf_print_state_parts(NULL, (struct pf_state_key *)key, NULL); printf("\n"); |