From e7bf96a4c373d736bc71ad3c8fd9a8a2c8c08101 Mon Sep 17 00:00:00 2001 From: jakllsch Date: Wed, 21 Jul 2010 20:41:31 +0000 Subject: [PATCH] Further silence ipsec_attach(). "initializing IPsec..."" done" is of somewhat limited value. (I normally wouldn't care; but on my box the (root) uhub(4)s attach between the first and last portion of the line.) --- sys/netipsec/ipsec.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/netipsec/ipsec.c b/sys/netipsec/ipsec.c index 3a2fdf59de2a..37e8be63ff92 100644 --- a/sys/netipsec/ipsec.c +++ b/sys/netipsec/ipsec.c @@ -1,4 +1,4 @@ -/* $NetBSD: ipsec.c,v 1.47 2010/01/31 00:43:38 hubertf Exp $ */ +/* $NetBSD: ipsec.c,v 1.48 2010/07/21 20:41:31 jakllsch Exp $ */ /* $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipsec/ipsec.c,v 1.2.2.2 2003/07/01 01:38:13 sam Exp $ */ /* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */ @@ -32,7 +32,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.47 2010/01/31 00:43:38 hubertf Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.48 2010/07/21 20:41:31 jakllsch Exp $"); /* * IPsec controller part. @@ -2280,7 +2280,6 @@ ipsec_attach(void) ipsecstat_percpu = percpu_alloc(sizeof(uint64_t) * IPSEC_NSTATS); - aprint_verbose("initializing IPsec..."); ah_attach(); esp_attach(); ipcomp_attach(); @@ -2288,6 +2287,5 @@ ipsec_attach(void) #ifdef TCP_SIGNATURE tcpsignature_attach(); #endif - aprint_verbose(" done\n"); } #endif /* __NetBSD__ */