diff options
author | 2001-11-05 19:47:03 +0000 | |
---|---|---|
committer | 2001-11-05 19:47:03 +0000 | |
commit | 08db815a96a08cf12ab5bc0ca678812e27cd1c8f (patch) | |
tree | afb07f715f9dcf4cc498645be48c5b42b181b429 /sys | |
parent | Fallout from the mmap changes. (diff) | |
download | wireguard-openbsd-08db815a96a08cf12ab5bc0ca678812e27cd1c8f.tar.xz wireguard-openbsd-08db815a96a08cf12ab5bc0ca678812e27cd1c8f.zip |
blink-matching-paren should be default in mg
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/hpux/hpux_compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/hpux/hpux_compat.c b/sys/compat/hpux/hpux_compat.c index 6eb27f95ed4..2de912da51c 100644 --- a/sys/compat/hpux/hpux_compat.c +++ b/sys/compat/hpux/hpux_compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_compat.c,v 1.14 2001/10/26 12:03:27 art Exp $ */ +/* $OpenBSD: hpux_compat.c,v 1.15 2001/11/05 19:47:03 art Exp $ */ /* $NetBSD: hpux_compat.c,v 1.35 1997/05/08 16:19:48 mycroft Exp $ */ /* @@ -826,7 +826,7 @@ hpux_sys_ioctl(p, v, retval) if (com == HPUXTIOCGETP || com == HPUXTIOCSETP) return (getsettty(p, SCARG(uap, fd), com, SCARG(uap, data))); - if ((fp = fd_getfile(fdp, SCARG(uap, fd)) == NULL) + if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL) return (EBADF); if ((fp->f_flag & (FREAD|FWRITE)) == 0) return (EBADF); |