diff --git a/sys/netinet6/frag6.c b/sys/netinet6/frag6.c index f1ada857dd16..ddf9db696684 100644 --- a/sys/netinet6/frag6.c +++ b/sys/netinet6/frag6.c @@ -1,4 +1,4 @@ -/* $NetBSD: frag6.c,v 1.54 2012/09/27 23:10:00 christos Exp $ */ +/* $NetBSD: frag6.c,v 1.55 2013/08/30 07:42:08 christos Exp $ */ /* $KAME: frag6.c,v 1.40 2002/05/27 21:40:31 itojun Exp $ */ /* @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: frag6.c,v 1.54 2012/09/27 23:10:00 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: frag6.c,v 1.55 2013/08/30 07:42:08 christos Exp $"); #include #include @@ -172,10 +172,10 @@ frag6_input(struct mbuf **mp, int *offp, int proto) offset += sizeof(struct ip6_frag); /* - * draft-gont-6man-ipv6-atomic-fragments-00: A host that receives an - * IPv6 packet which includes a Fragment Header with the "Fragment - * Offset" equal to 0 and the "M" bit equal to 0 MUST process such - * packet in isolation from any other packets/fragments. + * RFC6946: A host that receives an IPv6 packet which includes + * a Fragment Header with the "Fragmen Offset" equal to 0 and + * the "M" bit equal to 0 MUST process such packet in isolation + * from any other packets/fragments. */ fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK); if (fragoff == 0 && !(ip6f->ip6f_offlg & IP6F_MORE_FRAG)) {