Missed a place where NETDEV_DOWN needs to be added to notification flags

This commit is contained in:
Gregory Nutt 2015-05-27 12:22:07 -06:00
parent f65b86f9e3
commit 7d8e8bc188
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ int arp_send(in_addr_t ipaddr)
state.snd_sent = false;
state.snd_result = -EBUSY;
state.snd_cb->flags = ARP_POLL;
state.snd_cb->flags = (ARP_POLL | NETDEV_DOWN);
state.snd_cb->priv = (FAR void *)&state;
state.snd_cb->event = arp_send_interrupt;