PERFORCE change 18988 for review

Robert Watson rwatson at freebsd.org
Wed Oct 9 20:51:42 GMT 2002


http://perforce.freebsd.org/p4db/chv.cgi?CH=18988

Change 18988 by rwatson at rwatson_tislabs on 2002/10/09 13:50:59

	ENOSYS versions of __mac_get_link() and __mac_set_link().

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#307 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#307 (text+ko) ====

@@ -4294,6 +4294,13 @@
 }
 
 int
+__mac_get_link(struct thread *td, struct __mac_get_link_args *uap)
+{
+
+	return (ENOSYS);
+}
+
+int
 __mac_set_fd(struct thread *td, struct __mac_set_fd_args *uap)
 {
 
@@ -4308,6 +4315,13 @@
 }
 
 int
+__mac_set_link(struct thread *td, struct __mac_set_link_args *uap)
+{
+
+	return (ENOSYS);
+}
+
+int
 mac_syscall(struct thread *td, struct mac_syscall_args *uap)
 {
 
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