Kill KAUTH_GENERIC_ISSUSER use.

This commit is contained in:
elad 2006-10-25 22:56:14 +00:00
parent adf8d7aab2
commit f808f29d05
1 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_agr.c,v 1.6 2006/07/08 05:56:48 yamt Exp $ */
/* $NetBSD: if_agr.c,v 1.7 2006/10/25 22:56:14 elad Exp $ */
/*-
* Copyright (c)2005 YAMAMOTO Takashi,
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_agr.c,v 1.6 2006/07/08 05:56:48 yamt Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_agr.c,v 1.7 2006/10/25 22:56:14 elad Exp $");
#include "bpfilter.h"
#include "opt_inet.h"
@ -859,8 +859,10 @@ agr_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
case SIOCSETAGR:
splx(s);
p = curproc; /* XXX */
error = kauth_authorize_generic(p->p_cred,
KAUTH_GENERIC_ISSUSER, &p->p_acflag);
error = kauth_authorize_network(p->p_cred,
KAUTH_NETWORK_INTERFACE,
KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
NULL);
if (!error) {
error = agrreq_copyin(ifr->ifr_data, &ar);
}