Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Mar 2002 10:03:14 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 8208 for review
Message-ID:  <200203221803.g2MI3EJ54681@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8208

Change 8208 by rwatson@rwatson_curry on 2002/03/22 10:03:08

	Un-const mac_policies_free, since it gets updated.

Affected files ...

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

Differences ...

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

@@ -91,7 +91,7 @@
 #error "MAC_MAX_POLICIES too large"
 #endif
 static const unsigned int	mac_max_policies = MAC_MAX_POLICIES;
-static const unsigned int	mac_policies_free = (1 << MAC_MAX_POLICIES) - 1;
+static unsigned int	mac_policies_free = (1 << MAC_MAX_POLICIES) - 1;
 SYSCTL_INT(_security_mac, OID_AUTO, max_policies, CTLFLAG_RD,
     &mac_max_policies, 0, "");
 struct maclabels {

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?200203221803.g2MI3EJ54681>