PERFORCE change 20422 for review
Robert Watson
rwatson at freebsd.org
Wed Oct 30 16:25:33 GMT 2002
http://perforce.freebsd.org/chv.cgi?CH=20422
Change 20422 by rwatson at rwatson_sproing on 2002/10/30 08:25:19
Synchronize prototype args, types.
Affected files ...
.. //depot/projects/trustedbsd/mac/sys/security/sebsd/sebsd.c#54 edit
Differences ...
==== //depot/projects/trustedbsd/mac/sys/security/sebsd/sebsd.c#54 (text+ko) ====
@@ -528,7 +528,7 @@
}
static void
-sebsd_associate_vnode_singlelabel(struct mount mp, struct label *fslabel,
+sebsd_associate_vnode_singlelabel(struct mount *mp, struct label *fslabel,
struct vnode *vp, struct label *vlabel)
{
@@ -654,7 +654,8 @@
static int
sebsd_check_vnode_create(struct ucred *cred, struct vnode *dvp,
- struct label *dlabel, struct vattr *vap)
+ struct label *dlabel, struct componentname *cnp,
+ struct vattr *vap)
{
struct task_security_struct *task;
struct vnode_security_struct *dir;
@@ -702,7 +703,7 @@
static int
sebsd_check_vnode_delete(struct ucred *cred, struct vnode *dvp,
struct label *dlabel, struct vnode *vp,
- struct label *label)
+ struct label *label, struct componentname *cnp)
{
struct task_security_struct *task;
struct vnode_security_struct *dir, *file;
@@ -907,7 +908,7 @@
static int
sebsd_check_vnode_rename_from(struct ucred *cred, struct vnode *dvp,
struct label *dlabel, struct vnode *vp,
- struct label *label)
+ struct label *label, struct componentname *cnp)
{
struct task_security_struct *task;
struct vnode_security_struct *old_dir, *old_file;
@@ -943,7 +944,8 @@
static int
sebsd_check_vnode_rename_to(struct ucred *cred, struct vnode *dvp,
struct label *dlabel, struct vnode *vp,
- struct label *label, int samedir)
+ struct label *label, int samedir,
+ struct componentname *cnp)
{
struct task_security_struct *task;
struct vnode_security_struct *new_dir, *new_file;
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