PERFORCE change 15135 for review

Robert Watson rwatson at freebsd.org
Mon Jul 29 17:57:15 GMT 2002


http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15135

Change 15135 by rwatson at 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 at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message



More information about the trustedbsd-cvs mailing list