RCS file: /sources/lwip/lwip/src/netif/ethernetif.c,v
retrieving revision 1.24
diff -u -3 -p -r1.24 ethernetif.c
--- ethernetif.c	14 Jul 2006 11:17:00 -0000	1.24
+++ ethernetif.c	5 Mar 2007 11:04:57 -0000
@@ -262,13 +262,6 @@ ethernetif_input(struct netif *netif)
   }
 }
 
-static void
-arp_timer(void *arg)
-{
-  etharp_tmr();
-  sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
-}
-
 /*
  * ethernetif_init():
  *
@@ -317,10 +310,6 @@ ethernetif_init(struct netif *netif)
   
   low_level_init(netif);
 
-  etharp_init();
-
-  sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
-
   return ERR_OK;
 }