From d5a174364a4b946f17856d9b114ab294bb46360d Mon Sep 17 00:00:00 2001 From: fbernon Date: Tue, 24 Jul 2007 08:49:00 +0000 Subject: [PATCH] Minor fix: debug text inside ethernetif_input --- src/netif/ethernetif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netif/ethernetif.c b/src/netif/ethernetif.c index 6f8a80e2..190be536 100644 --- a/src/netif/ethernetif.c +++ b/src/netif/ethernetif.c @@ -237,7 +237,7 @@ ethernetif_input(struct netif *netif) case ETHTYPE_ARP: /* full packet send to tcpip_thread to process */ if (netif->input(p, netif)!=ERR_OK) - { LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_init: IP input error\n")); + { LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IP input error\n")); pbuf_free(p); p = NULL; } @@ -262,7 +262,7 @@ ethernetif_input(struct netif *netif) pbuf_header(p, -sizeof(struct eth_hdr)); /* pass to network layer */ if (netif->input(p, netif)!=ERR_OK) - { LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_init: IP input error\n")); + { LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IP input error\n")); pbuf_free(p); p = NULL; }