PERFORCE change 15199 for review

Robert Watson rwatson at freebsd.org
Tue Jul 30 16:32:37 GMT 2002


http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15199

Change 15199 by rwatson at 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 at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message



More information about the trustedbsd-cvs mailing list