mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-09 16:01:19 +01:00
When system act as IPX router (sysctl -w net.ipx.ipx.ipxforwarding=1,
running IPXRouted -s) between IPX configured interfaces, it generate syslog messages "ipx_ctlinput: cmd 15." even if kernel compiled with IPXPRINTFS=0 and IPX_ERRPRINTFS=0 options. PR: 6875 Reviewed by: phk Submitted by: Vladimir A. Jakovenko <vovik@ntu-kpi.kiev.ua>
This commit is contained in:
parent
4342fa9172
commit
1de24c3a4e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36857
@ -33,7 +33,7 @@
|
||||
*
|
||||
* @(#)ipx_input.c
|
||||
*
|
||||
* $Id: ipx_input.c,v 1.16 1998/03/30 09:53:09 phk Exp $
|
||||
* $Id: ipx_input.c,v 1.17 1998/04/06 09:30:42 phk Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -320,7 +320,8 @@ ipx_ctlinput(cmd, arg_as_sa, dummy)
|
||||
break;
|
||||
|
||||
default:
|
||||
printf("ipx_ctlinput: cmd %d.\n", cmd);
|
||||
if (ipxprintfs)
|
||||
printf("ipx_ctlinput: cmd %d.\n", cmd);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user