Fix Hurd tiocsctty change.

This commit is contained in:
Carl Fredrik Hammar 2010-02-19 11:08:00 -08:00 committed by Roland McGrath
parent 8c3fe38d25
commit 199428c197
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-02-19 Carl Fredrik Hammar <hammy.lite@gmail.com>
* hurd/hurdioctl.c (tiocsctty): Call `do_tiocsctty' instead of
non-existent `tiocsctty_port'.
2010-02-16 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/i386/i686/multiarch/memcmp.S (memcmp): Use CPUID_OFFSET

View File

@ -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);