From owner-p4-projects Fri Mar 22 10: 3:23 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4E97C37B41C; Fri, 22 Mar 2002 10:03:15 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D50037B41A for ; Fri, 22 Mar 2002 10:03:14 -0800 (PST) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2MI3EJ54681 for perforce@freebsd.org; Fri, 22 Mar 2002 10:03:14 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Fri, 22 Mar 2002 10:03:14 -0800 (PST) Message-Id: <200203221803.g2MI3EJ54681@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 8208 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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