From owner-cvs-all@FreeBSD.ORG Thu Oct 25 11:31:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5A8816A41A; Thu, 25 Oct 2007 11:31:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9F35C13C4A3; Thu, 25 Oct 2007 11:31:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l9PBVERU094921; Thu, 25 Oct 2007 11:31:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l9PBVE2j094920; Thu, 25 Oct 2007 11:31:14 GMT (envelope-from rwatson) Message-Id: <200710251131.l9PBVE2j094920@repoman.freebsd.org> From: Robert Watson Date: Thu, 25 Oct 2007 11:31:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/mac_biba mac_biba.c src/sys/security/mac_bsdextended mac_bsdextended.c src/sys/security/mac_ifoff mac_ifoff.c src/sys/security/mac_lomac mac_lomac.c src/sys/security/mac_mls mac_mls.c src/sys/security/mac_none mac_none.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2007 11:31:14 -0000 rwatson 2007-10-25 11:31:11 UTC FreeBSD src repository Modified files: sys/security/mac_biba mac_biba.c sys/security/mac_bsdextended mac_bsdextended.c sys/security/mac_ifoff mac_ifoff.c sys/security/mac_lomac mac_lomac.c sys/security/mac_mls mac_mls.c sys/security/mac_none mac_none.c sys/security/mac_partition mac_partition.c sys/security/mac_portacl mac_portacl.c sys/security/mac_seeotheruids mac_seeotheruids.c sys/security/mac_stub mac_stub.c sys/security/mac_test mac_test.c Log: Consistently name functions for mac_ as _whatever rather than mac__whatever, as this shortens the names and makes the code a bit easier to read. When dealing with label structures, name variables 'mb', 'ml', 'mm rather than the longer 'mac_biba', 'mac_lomac', and 'mac_mls', likewise making the code a little easier to read. Obtained from: TrustedBSD Project Revision Changes Path 1.110 +726 -736 src/sys/security/mac_biba/mac_biba.c 1.41 +128 -130 src/sys/security/mac_bsdextended/mac_bsdextended.c 1.15 +30 -29 src/sys/security/mac_ifoff/mac_ifoff.c 1.56 +613 -633 src/sys/security/mac_lomac/mac_lomac.c 1.91 +720 -729 src/sys/security/mac_mls/mac_mls.c 1.37 +2 -2 src/sys/security/mac_none/mac_none.c 1.21 +36 -35 src/sys/security/mac_partition/mac_partition.c 1.17 +26 -26 src/sys/security/mac_portacl/mac_portacl.c 1.17 +21 -21 src/sys/security/mac_seeotheruids/mac_seeotheruids.c 1.72 +2 -2 src/sys/security/mac_stub/mac_stub.c 1.82 +413 -413 src/sys/security/mac_test/mac_test.c