IPv4: fix some meaningless debug messages

Signed-off-by: Stephan Linz <linz@li-pro.net>
This commit is contained in:
Stephan Linz 2016-01-18 21:03:00 +01:00 committed by Sylvain Rochet
parent 9f3270afaf
commit 2c31beb6e7
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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);
} }