From 145d6ab5d2ce9c0944b4272b4878327736dd7b72 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Tue, 8 Aug 2017 12:20:56 +0200 Subject: [PATCH] test_etharp.c: IANA_HWTYPE_ETHERNET -> LWIP_IANA_HWTYPE_ETHERNET --- test/unit/etharp/test_etharp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/etharp/test_etharp.c b/test/unit/etharp/test_etharp.c index 9b26edae..96a32420 100644 --- a/test/unit/etharp/test_etharp.c +++ b/test/unit/etharp/test_etharp.c @@ -90,7 +90,7 @@ create_arp_response(ip4_addr_t *adr) ethhdr->src = test_ethaddr2; ethhdr->type = htons(ETHTYPE_ARP); - etharphdr->hwtype = htons(IANA_HWTYPE_ETHERNET); + etharphdr->hwtype = htons(LWIP_IANA_HWTYPE_ETHERNET); etharphdr->proto = htons(ETHTYPE_IP); etharphdr->hwlen = ETHARP_HWADDR_LEN; etharphdr->protolen = sizeof(ip4_addr_t);