From owner-cvs-all Wed Oct 30 9:58:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4DCC37B406; Wed, 30 Oct 2002 09:58:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20AFF43E7B; Wed, 30 Oct 2002 09:58:13 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g9UHuvmV066937; Wed, 30 Oct 2002 09:56:57 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id g9UHuvmd066936; Wed, 30 Oct 2002 09:56:57 -0800 (PST) Message-Id: <200210301756.g9UHuvmd066936@repoman.freebsd.org> From: Robert Watson Date: Wed, 30 Oct 2002 09:56:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_mac.c src/sys/sys mac.h mac_policy.h src/sys/security/mac_biba mac_biba.c src/sys/security/mac_bsdextended mac_bsdextended.c src/sys/security/mac_mls mac_mls.c src/sys/security/mac_none mac_none.c src/sys/security/mac_test ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/10/30 09:56:57 PST Modified files: sys/kern kern_mac.c sys/sys mac.h mac_policy.h sys/security/mac_biba mac_biba.c sys/security/mac_bsdextended mac_bsdextended.c sys/security/mac_mls mac_mls.c sys/security/mac_none mac_none.c sys/security/mac_test mac_test.c Log: While 'mode_t' seemed like a good idea for the access mode argument for MAC access() and open() checks, the argument actually has an int type where it becomes available. Switch to using 'int' for the mode argument throughout the MAC Framework and policy modules. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.55 +3 -3 src/sys/kern/kern_mac.c 1.37 +1 -1 src/sys/security/mac_biba/mac_biba.c 1.4 +5 -5 src/sys/security/mac_bsdextended/mac_bsdextended.c 1.28 +1 -1 src/sys/security/mac_mls/mac_mls.c 1.17 +2 -2 src/sys/security/mac_none/mac_none.c 1.14 +2 -2 src/sys/security/mac_test/mac_test.c 1.24 +2 -2 src/sys/sys/mac.h 1.23 +2 -2 src/sys/sys/mac_policy.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message