mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-29 03:14:04 +00:00
IPv4: fix some meaningless debug messages
Signed-off-by: Stephan Linz <linz@li-pro.net>
This commit is contained in:
parent
9f3270afaf
commit
2c31beb6e7
@ -234,7 +234,7 @@ icmp_input(struct pbuf *p, struct netif *inp)
|
|||||||
ret = ip4_output_if(p, src, IP_HDRINCL,
|
ret = ip4_output_if(p, src, IP_HDRINCL,
|
||||||
ICMP_TTL, 0, IP_PROTO_ICMP, inp);
|
ICMP_TTL, 0, IP_PROTO_ICMP, inp);
|
||||||
if (ret != ERR_OK) {
|
if (ret != ERR_OK) {
|
||||||
LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: ip_output_if returned an error: %c.\n", ret));
|
LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: ip_output_if returned an error: %s\n", lwip_strerr(ret)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -953,7 +953,7 @@ err_t ip4_output_if_opt_src(struct pbuf *p, const ip4_addr_t *src, const ip4_add
|
|||||||
}
|
}
|
||||||
#endif /* IP_FRAG */
|
#endif /* IP_FRAG */
|
||||||
|
|
||||||
LWIP_DEBUGF(IP_DEBUG, ("netif->output()"));
|
LWIP_DEBUGF(IP_DEBUG, ("ip4_output_if: call netif->output()\n"));
|
||||||
return netif->output(netif, p, dest);
|
return netif->output(netif, p, dest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user