Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Oct 2002 13:51:42 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 18988 for review
Message-ID:  <200210092051.g99Kpg98050654@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/p4db/chv.cgi?CH=18988

Change 18988 by rwatson@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@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?200210092051.g99Kpg98050654>