Skip to content

Commit

Permalink
Fix Hurd tiocsctty change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Fredrik Hammar authored and Roland McGrath committed Feb 19, 2010
1 parent 8c3fe38 commit 199428c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion hurd/hurdioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 199428c

Please sign in to comment.