mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-06-16 18:03:44 +08:00
Fix typos using codespell
Conservative strategy was used, maybe other typos remain. Rebased: Simon Goldschmidt <goldsimon@gmx.de>
This commit is contained in:
@@ -297,7 +297,7 @@ static err_t lwip_tx_func(struct netif *netif, struct pbuf *p)
|
||||
|
||||
check_pkt(p, 278, magic_cookie, sizeof(magic_cookie));
|
||||
|
||||
/* Check dchp message type, can be at different positions */
|
||||
/* Check dhcp message type, can be at different positions */
|
||||
if (txpacket == 1) {
|
||||
u8_t dhcp_discover_opt[] = { 0x35, 0x01, 0x01 };
|
||||
check_pkt_fuzzy(p, 282, dhcp_discover_opt, sizeof(dhcp_discover_opt));
|
||||
@@ -390,7 +390,7 @@ static err_t lwip_tx_func(struct netif *netif, struct pbuf *p)
|
||||
|
||||
check_pkt(p, 278, magic_cookie, sizeof(magic_cookie));
|
||||
|
||||
/* Check dchp message type, can be at different positions */
|
||||
/* Check dhcp message type, can be at different positions */
|
||||
if (txpacket == 1) {
|
||||
u8_t dhcp_discover_opt[] = { 0x35, 0x01, 0x01 };
|
||||
check_pkt_fuzzy(p, 282, dhcp_discover_opt, sizeof(dhcp_discover_opt));
|
||||
@@ -449,7 +449,7 @@ static err_t lwip_tx_func(struct netif *netif, struct pbuf *p)
|
||||
|
||||
check_pkt(p, 278, magic_cookie, sizeof(magic_cookie));
|
||||
|
||||
/* Check dchp message type, can be at different positions */
|
||||
/* Check dhcp message type, can be at different positions */
|
||||
check_pkt_fuzzy(p, 282, dhcp_request_opt, sizeof(dhcp_request_opt));
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user