]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/commitdiff
fixed typo: IP6_FRAG_COPYHEADER -> IPV6_FRAG_COPYHEADER
authorSylvain Rochet <gradator@gradator.net>
Fri, 28 Aug 2015 12:28:04 +0000 (14:28 +0200)
committerSylvain Rochet <gradator@gradator.net>
Fri, 28 Aug 2015 12:28:04 +0000 (14:28 +0200)
src/core/ipv6/ip6_frag.c

index e670e3da2c1bb16788400fa780c0ab7c11557703..e19b924043c7682bc562dedd0ed8a945a579ed6b 100644 (file)
@@ -113,7 +113,7 @@ ip6_reass_tmr(void)
   struct ip6_reassdata *r, *tmp;
 
 #if !IPV6_FRAG_COPYHEADER
-  LWIP_ASSERT("sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN, set IP6_FRAG_COPYHEADER to 1",
+  LWIP_ASSERT("sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN, set IPV6_FRAG_COPYHEADER to 1",
     sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN);
 #endif /* !IPV6_FRAG_COPYHEADER */
 
@@ -372,7 +372,7 @@ ip6_reass(struct pbuf *p)
     LWIP_ASSERT("no room for struct ip6_reass_helper", hdrerr == ERR_OK);
   }
 #else /* IPV6_FRAG_COPYHEADER */
-  LWIP_ASSERT("sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN, set IP6_FRAG_COPYHEADER to 1",
+  LWIP_ASSERT("sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN, set IPV6_FRAG_COPYHEADER to 1",
     sizeof(struct ip6_reass_helper) <= IP6_FRAG_HLEN);
 #endif /* IPV6_FRAG_COPYHEADER */
   iprh = (struct ip6_reass_helper *)p->payload;