diff options
author | dgregor <dgregor@cvs.openbsd.org> | 1998-03-04 23:20:42 +0000 |
---|---|---|
committer | dgregor <dgregor@cvs.openbsd.org> | 1998-03-04 23:20:42 +0000 |
commit | d7f27b4328cdefd303b5606f83916290c16fe4a0 (patch) | |
tree | a81f3eb192776d8015bb456fd80f7627bcff30f7 /sys | |
parent | 4c8eec6755a69d3a6b39a4a1fcbe903dba30f908 (diff) |
don't print "IP Filter: initialized"
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_fil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_fil.c b/sys/netinet/ip_fil.c index f28ce0f7cac..38149344f8b 100644 --- a/sys/netinet/ip_fil.c +++ b/sys/netinet/ip_fil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_fil.c,v 1.16 1998/01/26 04:10:39 dgregor Exp $ */ +/* $OpenBSD: ip_fil.c,v 1.17 1998/03/04 23:20:41 dgregor Exp $ */ /* * Copyright (C) 1993-1997 by Darren Reed. * @@ -8,7 +8,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)ip_fil.c 2.41 6/5/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ip_fil.c,v 1.16 1998/01/26 04:10:39 dgregor Exp $"; +static const char rcsid[] = "@(#)$Id: ip_fil.c,v 1.17 1998/03/04 23:20:41 dgregor Exp $"; #endif #ifndef SOLARIS @@ -267,7 +267,7 @@ ipl_enable() else defpass = "no-match -> block"; -#ifdef __OpenBSD__ /* don't print this message */ +#ifndef __OpenBSD__ /* don't print this message */ printf("IP Filter: initialized. Default = %s all, Logging = %s\n", defpass, # ifdef IPFILTER_LOG |