Date: Tue, 30 Jul 2002 09:32:37 -0700 (PDT) From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 15199 for review Message-ID: <200207301632.g6UGWbFP009812@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15199 Change 15199 by rwatson@rwatson_tislabs on 2002/07/30 09:31:53 Sigh. Two build fixes I forgot to commit last night. Affected files ... .. //depot/projects/trustedbsd/mac/sys/kern/subr_mbuf.c#15 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/kern/subr_mbuf.c#15 (text+ko) ==== @@ -1271,8 +1271,8 @@ if (mb != NULL) { _mbhdr_setup(mb, type); #ifdef MAC - if (mac_init_mbuf(m, how) != 0) - mb_free(&mb_list_mbuf, mb, how, type, 0, NULL); + if (mac_init_mbuf(mb, how) != 0) { + mb_free(&mb_list_mbuf, mb, type, 0, NULL); return (NULL); } #endif @@ -1320,8 +1320,8 @@ if (mb != NULL) { _mbhdr_setup(mb, type); #ifdef MAC - if (mac_init_mbuf(m, how) != 0) { - mb_free(&mb_list_mbuf, mb, how, type, 0, NULL); + if (mac_init_mbuf(mb, how) != 0) { + mb_free(&mb_list_mbuf, mb, type, 0, NULL); return (NULL); } #endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207301632.g6UGWbFP009812>