From a5cd3fcafd90c104d163f5b8f4a0ae65b286a237 Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 25 Nov 2004 14:04:45 +0000 Subject: [PATCH] Added a missing "not" in the comment, the code was correct. --- src/netif/etharp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netif/etharp.c b/src/netif/etharp.c index db356c82..d44ef53d 100644 --- a/src/netif/etharp.c +++ b/src/netif/etharp.c @@ -433,7 +433,7 @@ etharp_ip_input(struct netif *netif, struct pbuf *p) /* Only insert an entry if the source IP address of the incoming IP packet comes from a host on the local network. */ hdr = p->payload; - /* source is on local network? */ + /* source is not on the local network? */ if (!ip_addr_netcmp(&(hdr->ip.src), &(netif->ip_addr), &(netif->netmask))) { /* do nothing */ return;