11558Srgrimes/*
21558Srgrimes * Copyright (c) 1992, 1993
31558Srgrimes *	The Regents of the University of California.  All rights reserved.
41558Srgrimes * All rights reserved.
51558Srgrimes *
61558Srgrimes * This code is derived from software donated to Berkeley by
71558Srgrimes * Jan-Simon Pendry.
81558Srgrimes *
91558Srgrimes * Redistribution and use in source and binary forms, with or without
101558Srgrimes * modification, are permitted provided that the following conditions
111558Srgrimes * are met:
121558Srgrimes * 1. Redistributions of source code must retain the above copyright
131558Srgrimes *    notice, this list of conditions and the following disclaimer.
141558Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
151558Srgrimes *    notice, this list of conditions and the following disclaimer in the
161558Srgrimes *    documentation and/or other materials provided with the distribution.
171558Srgrimes * 4. Neither the name of the University nor the names of its contributors
181558Srgrimes *    may be used to endorse or promote products derived from this software
191558Srgrimes *    without specific prior written permission.
201558Srgrimes *
211558Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221558Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231558Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241558Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251558Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261558Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271558Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281558Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291558Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301558Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311558Srgrimes * SUCH DAMAGE.
321558Srgrimes *
331558Srgrimes *	@(#)pt_exec.c	8.1 (Berkeley) 6/5/93
341558Srgrimes */
351558Srgrimes
36129862Sstefanf#include <sys/cdefs.h>
37129862Sstefanf__FBSDID("$FreeBSD$");
3837429Scharnier
391558Srgrimes#include <errno.h>
401558Srgrimes#include <sys/types.h>
411558Srgrimes#include <sys/param.h>
421558Srgrimes
431558Srgrimes#include "portald.h"
441558Srgrimes
45166157Srodrigcint portal_exec(struct portal_cred *pcr __unused, char *key __unused,
46166157Srodrigc    char **v __unused, int so __unused, int *fdp __unused)
471558Srgrimes{
481558Srgrimes	return (ENOEXEC);
491558Srgrimes}
501558Srgrimes
51