Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Apr 2002 20:16:31 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 10074 for review
Message-ID:  <200204210316.g3L3GVx32827@freefall.freebsd.org>

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

Change 10074 by rwatson@rwatson_tislabs on 2002/04/20 20:15:51

	During the last integ, I failed to update UDF so that it used
	the vnaccess() call, which replaces vaccess() in the MAC branch.
	Without this change, the udf module could not be loaded due
	to a missing symbol.

Affected files ...

... //depot/projects/trustedbsd/mac/sys/fs/udf/udf_vnops.c#3 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/fs/udf/udf_vnops.c#3 (text+ko) ====

@@ -218,7 +218,7 @@
 
 	mode = udf_permtomode(node);
 
-	return (vaccess(vp->v_type, mode, node->fentry->uid, node->fentry->gid,
+	return (vnaccess(vp, mode, node->fentry->uid, node->fentry->gid,
 	    a_mode, a->a_cred, NULL));
 }
 

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?200204210316.g3L3GVx32827>