summaryrefslogtreecommitdiff
path: root/apps/netutils/dhcpd/dhcpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/dhcpd/dhcpd.c')
-rw-r--r--apps/netutils/dhcpd/dhcpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/netutils/dhcpd/dhcpd.c b/apps/netutils/dhcpd/dhcpd.c
index c600be2fa..edc9195d0 100644
--- a/apps/netutils/dhcpd/dhcpd.c
+++ b/apps/netutils/dhcpd/dhcpd.c
@@ -56,7 +56,7 @@
# include <debug.h> /* For ndbg, vdbg */
# include <nuttx/compiler.h> /* For CONFIG_CPP_HAVE_WARNING */
# include <arch/irq.h> /* For irqstore() and friends -- REVISIT */
-# include <nuttx/net/uip/uip-arp.h> /* For low-level ARP interfaces -- REVISIT */
+# include <nuttx/net/arp.h> /* For low-level ARP interfaces -- REVISIT */
# include <apps/netutils/dhcpd.h> /* Advertised DHCPD APIs */
#endif
@@ -277,7 +277,7 @@ static inline void dhcpd_arpupdate(uint16_t *pipaddr, uint8_t *phwaddr)
*/
flags = uip_lock();
- uip_arp_update(pipaddr, phwaddr);
+ arp_update(pipaddr, phwaddr);
uip_unlock(flags);
}
#else