mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-19 23:12:09 +00:00
Reverted fix for bug #38203 since it might be wrong
This commit is contained in:
parent
7e76480db4
commit
d3217718a9
@ -267,9 +267,6 @@ HISTORY
|
|||||||
2015-03-20: Simon Goldschmidt
|
2015-03-20: Simon Goldschmidt
|
||||||
* dhcp.c: fixed bug #38714 (Missing option and client address in DHCPRELEASE message)
|
* dhcp.c: fixed bug #38714 (Missing option and client address in DHCPRELEASE message)
|
||||||
|
|
||||||
2015-03-20: Simon Goldschmidt
|
|
||||||
* dhcp.c: fixed bug #38203 (DHCP options are not recorded in all DHCP ack messages)
|
|
||||||
|
|
||||||
2015-03-19: Simon Goldschmidt
|
2015-03-19: Simon Goldschmidt
|
||||||
* api.h, tcpip.h, api_lib.c, api_msg.c: fixed race conditions in assigning
|
* api.h, tcpip.h, api_lib.c, api_msg.c: fixed race conditions in assigning
|
||||||
netconn->last_err (fixed bugs #38121 and #37676)
|
netconn->last_err (fixed bugs #38121 and #37676)
|
||||||
|
@ -1659,7 +1659,6 @@ dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr,
|
|||||||
/* already bound to the given lease address? */
|
/* already bound to the given lease address? */
|
||||||
else if ((dhcp->state == DHCP_STATE_REBOOTING) || (dhcp->state == DHCP_STATE_REBINDING) ||
|
else if ((dhcp->state == DHCP_STATE_REBOOTING) || (dhcp->state == DHCP_STATE_REBINDING) ||
|
||||||
(dhcp->state == DHCP_STATE_RENEWING)) {
|
(dhcp->state == DHCP_STATE_RENEWING)) {
|
||||||
dhcp_handle_ack(netif);
|
|
||||||
dhcp_bind(netif);
|
dhcp_bind(netif);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user