Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2002 10:57:15 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 15135 for review
Message-ID:  <200207291757.g6THvFk8019883@freefall.freebsd.org>

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

Change 15135 by rwatson@rwatson_curry on 2002/07/29 10:56:25

	Incorrect symbol in forward declaration could result in a linker
	failure at boot.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#85 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#85 (text+ko) ====

@@ -111,7 +111,7 @@
 
 MALLOC_DEFINE(M_MACBIBA, "biba label", "MAC/Biba labels");
 
-static int	mac_biba_check_open(struct ucred *cred, struct vnode *vp,
+static int	mac_biba_check_vnode_open(struct ucred *cred, struct vnode *vp,
 		    struct label *vnodelabel, mode_t acc_mode);
 
 static struct mac_biba *
@@ -1492,7 +1492,7 @@
     struct label *label, mode_t flags)
 {
 
-	return (mac_biba_check_open(cred, vp, label, flags));
+	return (mac_biba_check_vnode_open(cred, vp, label, flags));
 }
 
 static int

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?200207291757.g6THvFk8019883>