From 1fe4edbe1c4e6e3433396fb5f80c9997e9cc36e5 Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 29 Apr 2004 21:49:12 +0000 Subject: [PATCH] Fix buggy comment. --- src/core/ipv4/ip_addr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ipv4/ip_addr.c b/src/core/ipv4/ip_addr.c index 96d5838b..9bf000ba 100644 --- a/src/core/ipv4/ip_addr.c +++ b/src/core/ipv4/ip_addr.c @@ -54,7 +54,7 @@ u8_t ip_addr_isbroadcast(struct ip_addr *addr, struct netif *netif) return 1; /* no broadcast support on this network interface? */ else if ((netif->flags & NETIF_FLAG_BROADCAST) == 0) - /* the given address cannot be a broadcast address */ + /* the given address cannot be a broadcast address * nor can we check against any broadcast addresses */ return 0; /* address matches network interface address exactly? => no broadcast */