Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Aug 2007 13:32:34 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 125816 for review
Message-ID:  <200708291332.l7TDWYEj065112@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=125816

Change 125816 by rwatson@rwatson_zoo on 2007/08/29 13:32:12

	Update branch code for new argument spellings, include file
	changes.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#268 edit
.. //depot/projects/trustedbsd/mac/sys/security/mac_chkexec/mac_chkexec.c#17 edit
.. //depot/projects/trustedbsd/mac/sys/security/mac_lomac/mac_lomac.c#104 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#268 (text+ko) ====

@@ -1274,7 +1274,7 @@
 	p = q = tiflist;
 	while ((p = strsep(&q, ", \t")) != NULL) {
 		if (strlen(p) < IFNAMSIZ) {
-			if (strcmp(p, ifnet->if_xname) == 0) {
+			if (strcmp(p, ifp->if_xname) == 0) {
 				type = MAC_BIBA_TYPE_HIGH;
 				break;
 			}

==== //depot/projects/trustedbsd/mac/sys/security/mac_chkexec/mac_chkexec.c#17 (text+ko) ====

@@ -33,7 +33,6 @@
 #include <sys/kernel.h>
 #include <sys/lock.h>
 #include <sys/mman.h>
-#include <sys/mac.h>
 #include <sys/md5.h>
 #include <sys/malloc.h>
 #include <sys/mount.h>
@@ -60,7 +59,7 @@
 
 #include <vm/vm.h>
 
-#include <sys/mac_policy.h>
+#include <security/mac/mac_policy.h>
 #include <security/mac_chkexec/mac_chkexec.h>
 
 #include <crypto/sha1.h>

==== //depot/projects/trustedbsd/mac/sys/security/mac_lomac/mac_lomac.c#104 (text+ko) ====

@@ -46,6 +46,7 @@
 #include <sys/conf.h>
 #include <sys/extattr.h>
 #include <sys/kernel.h>
+#include <sys/ksem.h>
 #include <sys/malloc.h>
 #include <sys/mman.h>
 #include <sys/mount.h>
@@ -68,8 +69,6 @@
 #include <sys/sem.h>
 #include <sys/shm.h>
 
-#include <posix4/ksem.h>
-
 #include <fs/devfs/devfs.h>
 
 #include <net/bpfdesc.h>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708291332.l7TDWYEj065112>