PERFORCE change 36962 for review
Robert Watson
rwatson at FreeBSD.org
Tue Aug 26 17:27:55 GMT 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,
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