mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 13:44:32 +02:00
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:
@@ -273,7 +273,7 @@ autoip_bind(struct netif *netif)
|
|||||||
#if ESP_LWIP
|
#if ESP_LWIP
|
||||||
struct dhcp *dhcp = netif->dhcp;
|
struct dhcp *dhcp = netif->dhcp;
|
||||||
if (dhcp->cb != NULL) {
|
if (dhcp->cb != NULL) {
|
||||||
dhcp->cb();
|
dhcp->cb(netif);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return ERR_OK;
|
return ERR_OK;
|
||||||
|
Reference in New Issue
Block a user