diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-08-15 20:32:22 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-08-15 20:32:22 +0000 |
commit | a1ee01486d4d2da0dce2fd97a58ca548a402d598 (patch) | |
tree | eb06f4625b973fc701bb62d6902e4f1eb40bb4f2 /sys/dev/ic/an.c | |
parent | 1a3299929d48eae52404e0b75267c111d07d2af4 (diff) |
change arguments to suser. suser now takes the process, and a flags
argument. old cred only calls user suser_ucred. this will allow future
work to more flexibly implement the idea of a root process. looks like
something i saw in freebsd, but a little different.
use of suser_ucred vs suser in file system code should be looked at again,
for the moment semantics remain unchanged.
review and input from art@ testing and further review miod@
Diffstat (limited to 'sys/dev/ic/an.c')
-rw-r--r-- | sys/dev/ic/an.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/an.c b/sys/dev/ic/an.c index ee6adcbae24..80c20a42765 100644 --- a/sys/dev/ic/an.c +++ b/sys/dev/ic/an.c @@ -1,4 +1,4 @@ -/* $OpenBSD: an.c,v 1.27 2003/06/25 22:28:14 mickey Exp $ */ +/* $OpenBSD: an.c,v 1.28 2003/08/15 20:32:16 tedu Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -1062,7 +1062,7 @@ an_ioctl(ifp, command, data) break; #ifdef ANCACHE if (areq.an_type == AN_RID_ZERO_CACHE) { - error = suser(p->p_ucred, &p->p_acflag); + error = suser(p, 0); if (error) break; sc->an_sigitems = sc->an_nextitem = 0; @@ -1086,7 +1086,7 @@ an_ioctl(ifp, command, data) error = copyout(&areq, ifr->ifr_data, sizeof(areq)); break; case SIOCSAIRONET: - error = suser(p->p_ucred, &p->p_acflag); + error = suser(p, 0); if (error) break; error = copyin(ifr->ifr_data, &areq, sizeof(areq)); |