Module Name: src
Committed By: jakllsch
Date: Wed Jul 21 20:41:31 UTC 2010
Modified Files:
src/sys/netipsec: ipsec.c
Log Message:
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.)
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/netipsec/ipsec.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netipsec/ipsec.c
diff -u src/sys/netipsec/ipsec.c:1.47 src/sys/netipsec/ipsec.c:1.48
--- src/sys/netipsec/ipsec.c:1.47 Sun Jan 31 00:43:38 2010
+++ src/sys/netipsec/ipsec.c Wed Jul 21 20:41:31 2010
@@ -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 <sys/cdefs.h>
-__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 @@
ipsecstat_percpu = percpu_alloc(sizeof(uint64_t) * IPSEC_NSTATS);
- aprint_verbose("initializing IPsec...");
ah_attach();
esp_attach();
ipcomp_attach();
@@ -2288,6 +2287,5 @@
#ifdef TCP_SIGNATURE
tcpsignature_attach();
#endif
- aprint_verbose(" done\n");
}
#endif /* __NetBSD__ */