summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorho <ho@openbsd.org>2001-10-05 05:54:50 +0000
committerho <ho@openbsd.org>2001-10-05 05:54:50 +0000
commit3bf1593752c1cf2ee104b0afb37cb926b5c08d91 (patch)
treeb8cb61c95832ccdb3ec38c9bb5614b0987d4bc93
parentDocument the skew argument to extent_alloc and extent_alloc_subregion. (diff)
downloadwireguard-openbsd-3bf1593752c1cf2ee104b0afb37cb926b5c08d91.tar.xz
wireguard-openbsd-3bf1593752c1cf2ee104b0afb37cb926b5c08d91.zip
Tweak a couple of debug levels.
-rw-r--r--sbin/isakmpd/transport.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/transport.c b/sbin/isakmpd/transport.c
index 0c29597bfd4..43393149c63 100644
--- a/sbin/isakmpd/transport.c
+++ b/sbin/isakmpd/transport.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: transport.c,v 1.14 2001/08/23 23:11:02 angelos Exp $ */
+/* $OpenBSD: transport.c,v 1.15 2001/10/05 05:54:50 ho Exp $ */
/* $EOM: transport.c,v 1.43 2000/10/10 12:36:39 provos Exp $ */
/*
@@ -88,7 +88,7 @@ void
transport_reference (struct transport *t)
{
t->refcnt++;
- LOG_DBG ((LOG_TRANSPORT, 90,
+ LOG_DBG ((LOG_TRANSPORT, 95,
"transport_reference: transport %p now has %d references", t,
t->refcnt));
}
@@ -99,7 +99,7 @@ transport_reference (struct transport *t)
void
transport_release (struct transport *t)
{
- LOG_DBG ((LOG_TRANSPORT, 90,
+ LOG_DBG ((LOG_TRANSPORT, 95,
"transport_release: transport %p had %d references", t,
t->refcnt));
if (--t->refcnt)