Optimize my last fix in etharp.c, I missed the variable declaration at the beginning of the function

This commit is contained in:
Dirk Ziegelmeier 2017-01-18 13:21:11 +01:00
parent c362c6a02c
commit 7aaa888d1d

View File

@ -699,11 +699,7 @@ etharp_input(struct pbuf *p, struct netif *netif)
LWIP_DEBUGF (ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_input: incoming ARP request\n"));
/* ARP request for our address? */
if (for_us) {
ip4_addr_t sipaddr;
/* Need an aligned copy of source IP */
IPADDR2_COPY(&sipaddr.addr, &hdr->sipaddr);
/* send ARP response */
etharp_raw(netif,
(struct eth_addr *)netif->hwaddr, &hdr->dhwaddr,
(struct eth_addr *)netif->hwaddr, netif_ip4_addr(netif),