diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-10-30 18:10:46 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-10-30 18:10:46 +0000 |
commit | e3a98b382a7c93a7db64f0d5e262009253d60e00 (patch) | |
tree | 49683be9952ac48eac766647fd9f60c1c164191d /sys/security/mac_none | |
parent | 388f8f322a9b3ca49e4f317773395687af6c2de7 (diff) | |
download | FreeBSD-src-e3a98b382a7c93a7db64f0d5e262009253d60e00.zip FreeBSD-src-e3a98b382a7c93a7db64f0d5e262009253d60e00.tar.gz |
Various minor type, prototype tweaks -- clean up cruft due to lack of
type checking on entry points (to be introduced shortly).
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/security/mac_none')
-rw-r--r-- | sys/security/mac_none/mac_none.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/mac_none/mac_none.c b/sys/security/mac_none/mac_none.c index 3eef294..e5c3027 100644 --- a/sys/security/mac_none/mac_none.c +++ b/sys/security/mac_none/mac_none.c @@ -477,7 +477,7 @@ mac_none_check_cred_visible(struct ucred *u1, struct ucred *u2) static int mac_none_check_ifnet_relabel(struct ucred *cred, struct ifnet *ifnet, - struct label *newlabel) + struct label *ifnetlabel, struct label *newlabel) { return (0); |