Date: Sat, 11 Feb 2006 13:44:26 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 91569 for review Message-ID: <200602111344.k1BDiQV1039966@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=91569 Change 91569 by rwatson@rwatson_zoo on 2006/02/11 13:43:42 Re-merge CIPSO option parsing. Note that what we have may not be everything we need. Affected files ... .. //depot/projects/trustedbsd/mac/sys/netinet/ip_options.c#2 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/netinet/ip_options.c#2 (text+ko) ==== @@ -354,8 +354,11 @@ case IPOPT_CIPSO: #ifdef MAC - error = mac_update_mbuf_from_cipso(m, cp, &code); - if (error) + /* + * Should we be providing the option to free the mbuf + * and not return ICMP? + */ + if (mac_update_mbuf_from_cipso(m, cp, &code) != 0) goto bad; #endif break;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200602111344.k1BDiQV1039966>