summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorKjell Wooding <kjell@cvs.openbsd.org>2000-02-18 07:47:03 +0000
committerKjell Wooding <kjell@cvs.openbsd.org>2000-02-18 07:47:03 +0000
commiteeb59fb7f09b4ceb33700a7e5aa93ce303b622ad (patch)
treeaee211b3c6b4ad67f36c4b27a8ce1ea0505c77b1 /sys/netinet
parent9ffe3780a83c720edb60011048f4137173cb3b6f (diff)
Get rid of printf message from ipf enable, as per theo's request.
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_fil.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet/ip_fil.c b/sys/netinet/ip_fil.c
index 5da34fba722..dbbf7ccfaba 100644
--- a/sys/netinet/ip_fil.c
+++ b/sys/netinet/ip_fil.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_fil.c,v 1.30 2000/02/16 22:34:18 kjell Exp $ */
+/* $OpenBSD: ip_fil.c,v 1.31 2000/02/18 07:47:02 kjell Exp $ */
/*
* Copyright (C) 1993-1998 by Darren Reed.
@@ -273,6 +273,7 @@ int iplattach()
else
defpass = "no-match -> block";
+#if !defined(__OpenBSD__)
printf("IP Filter: initialized. Default = %s all, Logging = %s\n",
defpass,
# ifdef IPFILTER_LOG
@@ -281,6 +282,8 @@ int iplattach()
"disabled");
# endif
printf("%s\n", ipfilter_version);
+#endif
+
#ifdef _KERNEL
# if (__FreeBSD_version >= 300000) && defined(_KERNEL)
ipfr_slowtimer_ch = timeout(ipfr_slowtimer, NULL, hz/2);