diff options
author | 1995-11-05 10:28:10 +0000 | |
---|---|---|
committer | 1995-11-05 10:28:10 +0000 | |
commit | e715ed55235297233a42a19453610cc1ae5df19e (patch) | |
tree | 0583da30f50cbf5749b786e0837b698ded5ff34f | |
parent | Fixed macro name typo in comment. (diff) | |
download | wireguard-openbsd-e715ed55235297233a42a19453610cc1ae5df19e.tar.xz wireguard-openbsd-e715ed55235297233a42a19453610cc1ae5df19e.zip |
Fixed ioctl name in case statement comment.
-rw-r--r-- | sys/compat/sunos/sunos_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/sunos/sunos_ioctl.c b/sys/compat/sunos/sunos_ioctl.c index abafec3d19f..8d39e6d15a6 100644 --- a/sys/compat/sunos/sunos_ioctl.c +++ b/sys/compat/sunos/sunos_ioctl.c @@ -429,7 +429,7 @@ sunos_sys_ioctl(p, v, retval) return copyin((caddr_t)&x, SCARG(uap, data), sizeof x); } - case _IOR('t', 100, int): /* sun SUNOS_TIOCSSOFTCAR */ + case _IOR('t', 100, int): /* sun SUNOS_TIOCGSOFTCAR */ { int x = 0; |