compile problem in libip6t_LOG.c
Andreas Ferber
aferber@techfak.uni-bielefeld.de
Mon, 22 Oct 2001 15:15:51 +0200
--WYTEVAkct0FjGQmd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Hi,
libip6t_LOG.c has a small compile problem caused by a missing local
variable definition. The attached patch fixes it.
Andreas
--
Andreas Ferber - dev/consulting GmbH - Bielefeld, FRG
---------------------------------------------------------
+49 521 1365800 - af@devcon.net - www.devcon.net
--WYTEVAkct0FjGQmd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="libip6t_LOG.c.patch"
Index: extensions/libip6t_LOG.c
===================================================================
RCS file: /var/cvs/netfilter/userspace/extensions/libip6t_LOG.c,v
retrieving revision 1.5
diff -u -r1.5 libip6t_LOG.c
--- extensions/libip6t_LOG.c 2001/10/17 07:55:02 1.5
+++ extensions/libip6t_LOG.c 2001/10/22 12:52:59
@@ -67,6 +67,7 @@
parse_level(const char *level)
{
unsigned int lev = -1;
+ unsigned int set = 0;
if (string_to_number(level, 0, 7, &lev) == -1) {
unsigned int i = 0;
--WYTEVAkct0FjGQmd--