Deleted Added
full compact
37c37
< * $FreeBSD: head/sys/security/mac_test/mac_test.c 101934 2002-08-15 18:51:27Z rwatson $
---
> * $FreeBSD: head/sys/security/mac_test/mac_test.c 102112 2002-08-19 16:43:25Z rwatson $
985a986,1001
> mac_test_check_vnode_poll(struct ucred *cred, struct vnode *vp,
> struct label *label)
> {
>
> return (0);
> }
>
> static int
> mac_test_check_vnode_read(struct ucred *cred, struct vnode *vp,
> struct label *label)
> {
>
> return (0);
> }
>
> static int
1090a1107,1114
> static int
> mac_test_check_vnode_write(struct ucred *cred, struct vnode *vp,
> struct label *label)
> {
>
> return (0);
> }
>
1280a1305,1308
> { MAC_CHECK_VNODE_POLL,
> (macop_t)mac_test_check_vnode_poll },
> { MAC_CHECK_VNODE_READ,
> (macop_t)mac_test_check_vnode_read },
1306a1335,1336
> { MAC_CHECK_VNODE_WRITE,
> (macop_t)mac_test_check_vnode_write },