]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix Hurd tiocsctty change.
authorCarl Fredrik Hammar <hammy.lite@gmail.com>
Fri, 19 Feb 2010 19:08:00 +0000 (11:08 -0800)
committerRoland McGrath <roland@redhat.com>
Fri, 19 Feb 2010 19:08:00 +0000 (11:08 -0800)
ChangeLog
hurd/hurdioctl.c

index e458ee1fff785a865631883e4ef936b76666cfe2..1044b4de659e90c2e0c6d04de9919f7d8ab703ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 1da8c0599d6fb99f6c08f0665b04ffd8d88c53fe..04d98629ef7c4a4a2986ed93a1ced090ab55eea0 100644 (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);