mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 16:32:25 +01: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:
parent
2b2701db9a
commit
ed7a91b5d2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3628
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)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;
|
||||
#endif
|
||||
if (max_keylen == 0) {
|
||||
#ifdef DEBUG
|
||||
printf("rn_init: radix functions require max_keylen be set\n");
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
R_Malloc(rn_zeros, char *, 3 * max_keylen);
|
||||
|
Loading…
Reference in New Issue
Block a user