Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2002 16:19:22 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 15147 for review
Message-ID:  <200207292319.g6TNJMJB099774@freefall.freebsd.org>

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

Change 15147 by rwatson@rwatson_paprika on 2002/07/29 16:18:51

	Entry point renames missed in i386 build.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/alpha/osf1/osf1_mount.c#6 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/alpha/osf1/osf1_mount.c#6 (text+ko) ====

@@ -134,7 +134,7 @@
 	sp = &mp->mnt_stat;
 	vrele(nd.ni_vp);
 #ifdef MAC
-	error = mac_check_statfs(td->td_proc->p_ucred, mp);
+	error = mac_check_mount_stat(td->td_proc->p_ucred, mp);
 	if (error)
 		return (error);
 #endif
@@ -161,7 +161,7 @@
 		return (error);
 	mp = ((struct vnode *)fp->f_data)->v_mount;
 #ifdef MAC
-	error = mac_check_statfs(td->td_proc->p_ucred, mp);
+	error = mac_check_mount_stat(td->td_proc->p_ucred, mp);
 	if (error) {
 		drop(fp, td);
 		return (error);
@@ -199,7 +199,7 @@
 		nmp = TAILQ_NEXT(mp, mnt_list);
 		if (osf_sfsp && count < maxcount) {
 #ifdef MAC
-			error = mac_check_statfs(td->td_proc->p_ucred, mp);
+			error = mac_check_mount_stat(td->td_proc->p_ucred, mp);
 			if (error)
 				continue;
 #endif

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?200207292319.g6TNJMJB099774>