From: deraadt Date: Fri, 16 Oct 2015 06:42:02 +0000 (+0000) Subject: FIOSETOWN/FIOGETOWN were added to "ioctl", but study finds no programs X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3efa320ee43e7b95d01418b9d62f3545635b3c9b;p=openbsd FIOSETOWN/FIOGETOWN were added to "ioctl", but study finds no programs currently needing them. delete 'em for now. ok doug --- diff --git a/sys/kern/kern_pledge.c b/sys/kern/kern_pledge.c index d20cc7c271c..7b26efd9468 100644 --- a/sys/kern/kern_pledge.c +++ b/sys/kern/kern_pledge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_pledge.c,v 1.31 2015/10/16 06:40:53 doug Exp $ */ +/* $OpenBSD: kern_pledge.c,v 1.32 2015/10/16 06:42:02 deraadt Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -1044,9 +1044,6 @@ pledge_ioctl_check(struct proc *p, long com, void *v) */ if ((p->p_p->ps_pledge & PLEDGE_IOCTL)) { switch (com) { - case FIOSETOWN: - case FIOGETOWN: - return (0); case TIOCGETA: if (fp->f_type == DTYPE_VNODE && (vp->v_flag & VISTTY)) return (0);