PERFORCE change 36962 for review

Robert Watson rwatson at FreeBSD.org
Tue Aug 26 10:27:57 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=36962

Change 36962 by rwatson at rwatson_tislabs on 2003/08/26 10:27:30

	Merge kern_mac.c at 3695 into MAC branch: fix mac_syscall() for
	static policy modules.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#403 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#403 (text+ko) ====

@@ -3891,7 +3891,7 @@
 		return (error);
 
 	error = ENOSYS;
-	LIST_FOREACH(mpc, &mac_policy_list, mpc_list) {
+	LIST_FOREACH(mpc, &mac_static_policy_list, mpc_list) {
 		if (strcmp(mpc->mpc_name, target) == 0 &&
 		    mpc->mpc_ops->mpo_syscall != NULL) {
 			error = mpc->mpc_ops->mpo_syscall(td,


More information about the p4-projects mailing list