[PATCH] Obvious compile fix for net/ipv4/ipconfig.c

From: Andre Noll
Date: Thu Sep 09 2004 - 14:48:21 EST


The undeclared variable in ic_bootp_recv was introduced by Peter's
previous IPCONFIG patch (Logical change 1.21935).

Signed-off-by: Andre Noll <noll@xxxxxxxxxxxxxxxxxxxxxxxxxx>

Index: linux-2.5/net/ipv4/ipconfig.c
===================================================================
RCS file: /var/cvs/repository/linux-2.5/net/ipv4/ipconfig.c,v
retrieving revision 1.41
diff -u -r1.41 ipconfig.c
--- linux-2.5/net/ipv4/ipconfig.c 8 Sep 2004 19:19:17 -0000 1.41
+++ linux-2.5/net/ipv4/ipconfig.c 9 Sep 2004 19:19:38 -0000
@@ -825,7 +825,7 @@
struct bootp_pkt *b;
struct iphdr *h;
struct ic_device *d;
- int len, ext_len;
+ int len, ext_len, i;

/* Perform verifications before taking the lock. */
if (skb->pkt_type == PACKET_OTHERHOST)
--
Andre Noll, http://www.mathematik.tu-darmstadt.de/~noll
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/