1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-01 17:00:36 +00:00

moved a message into a #ifdef DEBUG. This message comes out if a kernel

doesn't have any networking in it.  For instance the new "MINI" install-
kernel.
This commit is contained in:
Poul-Henning Kamp 1994-10-15 21:33:17 +00:00
parent 2b2701db9a
commit ed7a91b5d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3628

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* @(#)radix.c 8.2 (Berkeley) 1/4/94 * @(#)radix.c 8.2 (Berkeley) 1/4/94
* $Id: radix.c,v 1.3 1994/08/02 07:46:29 davidg Exp $ * $Id: radix.c,v 1.4 1994/10/08 22:38:23 phk Exp $
*/ */
/* /*
@ -744,7 +744,9 @@ rn_init()
max_keylen = dom->dom_maxrtkey; max_keylen = dom->dom_maxrtkey;
#endif #endif
if (max_keylen == 0) { if (max_keylen == 0) {
#ifdef DEBUG
printf("rn_init: radix functions require max_keylen be set\n"); printf("rn_init: radix functions require max_keylen be set\n");
#endif
return; return;
} }
R_Malloc(rn_zeros, char *, 3 * max_keylen); R_Malloc(rn_zeros, char *, 3 * max_keylen);