From b4404ff0c8c49688fa184748ff8473335053148b Mon Sep 17 00:00:00 2001 From: goldsimon Date: Sun, 18 Oct 2009 08:23:05 +0000 Subject: [PATCH] Corrected typo --- src/core/ipv4/ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ipv4/ip.c b/src/core/ipv4/ip.c index 55750c4b..5d0532d4 100644 --- a/src/core/ipv4/ip.c +++ b/src/core/ipv4/ip.c @@ -321,7 +321,7 @@ ip_input(struct pbuf *p, struct netif *inp) /* broadcast or multicast packet source address? Compliant with RFC 1122: 3.2.1.3 */ #if LWIP_DHCP - /* DHCP servers need 0.0.0.0 to be allowed as source port (RFC 1.1.2.2: 3.2.1.3/a) */ + /* DHCP servers need 0.0.0.0 to be allowed as source address (RFC 1.1.2.2: 3.2.1.3/a) */ if (check_ip_src && (iphdr->src.addr != 0)) #endif /* LWIP_DHCP */ { if ((ip_addr_isbroadcast(&(iphdr->src), inp)) ||