From 47984b0496c776eac007aae85263c2a5dcf2076f Mon Sep 17 00:00:00 2001 From: lukem Date: Fri, 20 Feb 2004 00:51:49 +0000 Subject: [PATCH] removed redundant redeclaration of tcp_active_pcbs (already defined by tcp.h) --- src/core/netif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/netif.c b/src/core/netif.c index 625566e2..6f0e2682 100644 --- a/src/core/netif.c +++ b/src/core/netif.c @@ -171,7 +171,7 @@ netif_set_ipaddr(struct netif *netif, struct ip_addr *ipaddr) /* address is actually being changed? */ if ((ip_addr_cmp(ipaddr, &(netif->ip_addr))) == 0) { - extern struct tcp_pcb *tcp_active_pcbs; + /* extern struct tcp_pcb *tcp_active_pcbs; defined by tcp.h */ LWIP_DEBUGF(NETIF_DEBUG | 1, ("netif_set_ipaddr: netif address being changed\n")); pcb = tcp_active_pcbs; while (pcb != NULL) {