summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r--sys/kern/tty.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 9b74370..7ddcb0b 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1817,9 +1817,6 @@ ttyhook_register(struct tty **rtp, struct proc *p, int fd,
{
struct tty *tp;
struct file *fp;
-#ifdef CAPABILITIES
- struct file *fp_cap;
-#endif
struct cdev *dev;
struct cdevsw *cdp;
struct filedesc *fdp;
@@ -1838,8 +1835,7 @@ ttyhook_register(struct tty **rtp, struct proc *p, int fd,
}
#ifdef CAPABILITIES
- fp_cap = fp;
- error = cap_funwrap(fp_cap, CAP_TTYHOOK, &fp);
+ error = cap_funwrap(fp, CAP_TTYHOOK, &fp);
if (error)
goto done1;
#endif
OpenPOWER on IntegriCloud