diff options
author | Carl Fredrik Hammar <hammy.lite@gmail.com> | 2010-02-19 11:08:00 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2010-02-19 11:08:00 -0800 |
commit | 199428c19774c12b3c4b6e6486ea9d4a021288af (patch) | |
tree | e22fc0b0f818c09e4b291a2b6bd6a8e41b0ec895 /hurd | |
parent | Whitespace fix. (diff) | |
download | glibc-199428c19774c12b3c4b6e6486ea9d4a021288af.tar.gz glibc-199428c19774c12b3c4b6e6486ea9d4a021288af.tar.bz2 glibc-199428c19774c12b3c4b6e6486ea9d4a021288af.zip |
Fix Hurd tiocsctty change.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdioctl.c b/hurd/hurdioctl.c index 1da8c0599d..04d98629ef 100644 --- a/hurd/hurdioctl.c +++ b/hurd/hurdioctl.c @@ -272,7 +272,7 @@ static int tiocsctty (int fd, int request) /* Always TIOCSCTTY. */ { - return __hurd_fail (HURD_DPORT_USE (fd, tiocsctty_port (port, ctty))); + return __hurd_fail (HURD_DPORT_USE (fd, do_tiocsctty (port, ctty))); } _HURD_HANDLE_IOCTL (tiocsctty, TIOCSCTTY); |