Merge branch 'bugfix/autoip_enable_issue' into 'master'

lwip: fix compile issue when autoip option enabled



See merge request !383
This commit is contained in:
Wu Jian Gang 2017-01-09 18:57:03 +08:00
commit 8615dbd486

View file

@ -273,7 +273,7 @@ autoip_bind(struct netif *netif)
#if ESP_LWIP
struct dhcp *dhcp = netif->dhcp;
if (dhcp->cb != NULL) {
dhcp->cb();
dhcp->cb(netif);
}
#endif
return ERR_OK;