This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.11-215-g199428c


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  199428c19774c12b3c4b6e6486ea9d4a021288af (commit)
      from  8c3fe38d2541f9597c34192a8ca44cd4f9cdefe0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=199428c19774c12b3c4b6e6486ea9d4a021288af

commit 199428c19774c12b3c4b6e6486ea9d4a021288af
Author: Carl Fredrik Hammar <hammy.lite@gmail.com>
Date:   Fri Feb 19 11:08:00 2010 -0800

    Fix Hurd tiocsctty change.

diff --git a/ChangeLog b/ChangeLog
index e458ee1..1044b4d 100644
--- 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
diff --git a/hurd/hurdioctl.c b/hurd/hurdioctl.c
index 1da8c05..04d9862 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);
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |    5 +++++
 hurd/hurdioctl.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]