Your message dated Mon, 22 Aug 2005 21:32:05 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#285935: fixed in filtergen 0.12.4-4
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 16 Dec 2004 14:42:40 +0000
>From [EMAIL PROTECTED] Thu Dec 16 06:42:40 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c158218.adsl.hansenet.de (localhost.localdomain)
[213.39.158.218]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Cewq0-00075s-00; Thu, 16 Dec 2004 06:42:40 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CewuU-0001FW-1V; Thu, 16 Dec 2004 15:47:18 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: filtergen: FTBFS (amd64/gcc-4.0): 'r' is used uninitialized in this
function
Message-Id: <[EMAIL PROTECTED]>
Date: Thu, 16 Dec 2004 15:47:18 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: filtergen
Severity: normal
Tags: patch
When building 'filtergen' on amd64 with gcc-4.0,
I get the following error:
if x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -O2 -W -Wall
-Werror -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow
-Wbad-function-cast -Wwrite-strings -MT fg-iptables.o -MD -MP -MF
".deps/fg-iptables.Tpo" -c -o fg-iptables.o fg-iptables.c; \
then mv -f ".deps/fg-iptables.Tpo" ".deps/fg-iptables.Po"; else rm -f
".deps/fg-iptables.Tpo"; exit 1; fi
cc1: warnings being treated as errors
fg-iptables.c: In function 'fg_iptables':
fg-iptables.c:370: warning: 'r' is used uninitialized in this function
make[3]: *** [fg-iptables.o] Error 1
make[3]: Leaving directory `/filtergen-0.12.4'
With the attached patch 'filtergen' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/filtergen-0.12.4/fg-iptables.c ./fg-iptables.c
--- ../tmp-orig/filtergen-0.12.4/fg-iptables.c 2004-05-15 05:26:51.000000000
+0200
+++ ./fg-iptables.c 2004-12-16 15:37:11.114620384 +0100
@@ -332,7 +332,7 @@
int fg_iptables(struct filter *filter, int flags)
{
long feat = 0;
- int r;
+ int r = 0;
struct fg_misc misc = { flags, &feat };
fg_callback cb_iptables = {
rule: cb_iptables_rule,
---------------------------------------
Received: (at 285935-close) by bugs.debian.org; 23 Aug 2005 04:40:07 +0000
>From [EMAIL PROTECTED] Mon Aug 22 21:40:07 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E7QSD-0008P3-00; Mon, 22 Aug 2005 21:32:05 -0700
From: Jamie Wilkinson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#285935: fixed in filtergen 0.12.4-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 22 Aug 2005 21:32:05 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: filtergen
Source-Version: 0.12.4-4
We believe that the bug you reported is fixed in the latest version of
filtergen, which is due to be installed in the Debian FTP archive:
filtergen_0.12.4-4.diff.gz
to pool/main/f/filtergen/filtergen_0.12.4-4.diff.gz
filtergen_0.12.4-4.dsc
to pool/main/f/filtergen/filtergen_0.12.4-4.dsc
filtergen_0.12.4-4_i386.deb
to pool/main/f/filtergen/filtergen_0.12.4-4_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jamie Wilkinson <[EMAIL PROTECTED]> (supplier of updated filtergen package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 23 Aug 2005 14:09:04 +1000
Source: filtergen
Binary: filtergen
Architecture: source i386
Version: 0.12.4-4
Distribution: unstable
Urgency: low
Maintainer: Jamie Wilkinson <[EMAIL PROTECTED]>
Changed-By: Jamie Wilkinson <[EMAIL PROTECTED]>
Description:
filtergen - packet filter generator for various firewall systems
Closes: 285935
Changes:
filtergen (0.12.4-4) unstable; urgency=low
.
* Apply patch from Andreas Jochens to fix build failure on amd64.
(Closes: #285935)
* Added flex and bison to the build dependencies.
* Updated standards version, no other changes required.
Files:
8b2dfc45ea3238ca4cf932a436b67175 594 net optional filtergen_0.12.4-4.dsc
75a875092d5eb1a68a21fd0a28da156b 61780 net optional filtergen_0.12.4-4.diff.gz
305136caa98e90615cec056c81a47a03 49892 net optional filtergen_0.12.4-4_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDCqPN5u9oNyz9HDgRAmq7AJ9NUGVHO5sJQLQy3qV8NeZFpVcBrACglJem
vjnpXyj7kzX5AwWwZe5myS4=
=951g
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]