mirror of git://sourceware.org/git/glibc.git
Fix Hurd tiocsctty change.
This commit is contained in:
parent
8c3fe38d25
commit
199428c197
|
@ -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>
|
2010-02-16 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/i386/i686/multiarch/memcmp.S (memcmp): Use CPUID_OFFSET
|
* sysdeps/i386/i686/multiarch/memcmp.S (memcmp): Use CPUID_OFFSET
|
||||||
|
|
|
@ -272,7 +272,7 @@ static int
|
||||||
tiocsctty (int fd,
|
tiocsctty (int fd,
|
||||||
int request) /* Always TIOCSCTTY. */
|
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);
|
_HURD_HANDLE_IOCTL (tiocsctty, TIOCSCTTY);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue