Browse Source

Removed "static" from declaration of netif in ip_forward and ip_output

(Bug #1909)
STABLE-2_1_x
kieranm 24 years ago
parent
commit
771fb0f2cd
  1. 5
      src/core/ipv4/ip.c

5
src/core/ipv4/ip.c

@ -158,7 +158,7 @@ ip_route(struct ip_addr *dest)
static void
ip_forward(struct pbuf *p, struct ip_hdr *iphdr, struct netif *inp)
{
static struct netif *netif;
struct netif *netif;
PERF_START;
@ -539,8 +539,7 @@ err_t
ip_output(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest,
u8_t ttl, u8_t proto)
{
static struct netif *netif;
struct netif *netif;
if((netif = ip_route(dest)) == NULL) {
DEBUGF(IP_DEBUG, ("ip_output: No route to 0x%lx\n", dest->addr));

Loading…
Cancel
Save