tags 625327 + pending
thanks

Dear maintainer,

I've prepared an NMU for filtergen (versioned as 0.12.4-5.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.   Homepage: http://info.comodo.priv.at/ - OpenPGP key ID: 0x8649AA06
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT & SPI, fellow of Free Software Foundation Europe
   `-    NP: Pink Floyd: Nobody home
diff -u filtergen-0.12.4/debian/changelog filtergen-0.12.4/debian/changelog
--- filtergen-0.12.4/debian/changelog
+++ filtergen-0.12.4/debian/changelog
@@ -1,3 +1,12 @@
+filtergen (0.12.4-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "ftbfs with gcc-4.6 -Werror": add patch from peter green that removes
+    some unused variables.
+    (Closes: #625327)
+
+ -- gregor herrmann <gre...@debian.org>  Mon, 12 Dec 2011 17:06:03 +0100
+
 filtergen (0.12.4-5) unstable; urgency=low
 
   * New maintainer.  Closes: #543434.
only in patch2:
unchanged:
--- filtergen-0.12.4.orig/resolver.c
+++ filtergen-0.12.4/resolver.c
@@ -43,10 +43,10 @@
             asprintf(&n->icmptype, "%s", i->i_type);
         } else {
 	    /* check that the icmptype is a number if we can't resolve it */
-	    long m;
+	    //long m;
 	    char * e;
 
-	    m = strtol(n->icmptype, &e, 10);
+	    strtol(n->icmptype, &e, 10);
 	    if (*e) {
 		fprintf(stderr, "warning: suspicious icmp type encountered: %s\n", n->icmptype);
 	    }
@@ -79,10 +79,10 @@
 	    asprintf(&n->port_min, "%d", ntohs(s->s_port));
 	} else {
 	    /* check that the port is a number if we can't resolve it */
-	    long m;
+	    //long m;
 	    char * e;
 
-	    m = strtol(n->port_min, &e, 10);
+	    strtol(n->port_min, &e, 10);
 	    if (*e) {
 		fprintf(stderr, "warning: suspicious port name encountered: %s\n", n->port_min);
 	    }
@@ -95,10 +95,10 @@
 	    asprintf(&n->port_max, "%d", ntohs(s->s_port));
 	} else {
 	    /* check that the port is a number if we can't resolve it */
-	    long m;
+	    //long m;
 	    char * e;
 
-	    m = strtol(n->port_max, &e, 10);
+	    strtol(n->port_max, &e, 10);
 	    if (*e) {
 		fprintf(stderr, "warning: suspicious port name encountered: %s\n", n->port_max);
 	    }
@@ -130,10 +130,10 @@
 	    asprintf(&n->proto, "%d", p->p_proto);
 	} else {
 	    /* check that the proto is a number if we can't resolve it */
-	    long m;
+	    //long m;
 	    char * e;
 
-	    m = strtol(n->proto, &e, 10);
+	    strtol(n->proto, &e, 10);
 	    if (*e) {
 		fprintf(stderr, "warning: suspicious protocol name encountered: %s\n", n->proto);
 	    }

Attachment: signature.asc
Description: Digital signature

Reply via email to