From owner-p4-projects Wed Oct 9 13:51:55 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 1BFDA37B404; Wed, 9 Oct 2002 13:51:53 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A738537B401 for ; Wed, 9 Oct 2002 13:51:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63AFB43E65 for ; Wed, 9 Oct 2002 13:51:52 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g99KphMt050657 for ; Wed, 9 Oct 2002 13:51:43 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.3/Submit) id g99Kpg98050654 for perforce@freebsd.org; Wed, 9 Oct 2002 13:51:42 -0700 (PDT) Date: Wed, 9 Oct 2002 13:51:42 -0700 (PDT) Message-Id: <200210092051.g99Kpg98050654@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 18988 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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