From 90b7e68b4ee710c43ebe3e65594e31b00afc0fdf Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 25 Nov 2004 13:52:34 +0000 Subject: [PATCH] Removed the Smurf. --- src/core/ipv4/icmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ipv4/icmp.c b/src/core/ipv4/icmp.c index a335f558..b979b625 100644 --- a/src/core/ipv4/icmp.c +++ b/src/core/ipv4/icmp.c @@ -74,7 +74,7 @@ icmp_input(struct pbuf *p, struct netif *inp) case ICMP_ECHO: /* broadcast or multicast destination address? */ if (ip_addr_isbroadcast(&iphdr->dest, inp) || ip_addr_ismulticast(&iphdr->dest)) { - LWIP_DEBUGF(ICMP_DEBUG, ("Smurf.\n")); + LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: Not echoing to multicast or broadcast pings\n")); ICMP_STATS_INC(icmp.err); pbuf_free(p); return;