diff options
author | David Krause <david@cvs.openbsd.org> | 2009-04-15 05:11:50 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2009-04-15 05:11:50 +0000 |
commit | 27ad42eaa4c7d2225dd8ceb9ae4864315842d64a (patch) | |
tree | 630647bb6cac4b1597b440a7d750b8ad18b8f65b /sys | |
parent | a649feaf00fcfb9c79dc3395a677ae01bb8c3dc9 (diff) |
move pfsync stale update messages to NOISY level; ok dlg@ henning@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_pfsync.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_pfsync.c b/sys/net/if_pfsync.c index df54f279551..54047349670 100644 --- a/sys/net/if_pfsync.c +++ b/sys/net/if_pfsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pfsync.c,v 1.120 2009/04/04 13:09:29 dlg Exp $ */ +/* $OpenBSD: if_pfsync.c,v 1.121 2009/04/15 05:11:49 david Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -942,7 +942,7 @@ pfsync_in_upd(struct pfsync_pkt *pkt, struct mbuf *m, int offset, int count) } if (sfail) { - if (pf_status.debug >= PF_DEBUG_MISC) { + if (pf_status.debug >= PF_DEBUG_NOISY) { printf("pfsync: %s stale update (%d)" " id: %016llx creatorid: %08x\n", (sfail < 7 ? "ignoring" : "partial"), @@ -1034,7 +1034,7 @@ pfsync_in_upd_c(struct pfsync_pkt *pkt, struct mbuf *m, int offset, int count) } if (sfail) { - if (pf_status.debug >= PF_DEBUG_MISC) { + if (pf_status.debug >= PF_DEBUG_NOISY) { printf("pfsync: ignoring stale update " "(%d) id: %016llx " "creatorid: %08x\n", sfail, |