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.22-116-ge4ad5e7


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  e4ad5e722cec9a274cd84585d9c33f696e36f847 (commit)
      from  0c5b8b5941e036dcaac69cecee9f01fdf9218e6e (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e4ad5e722cec9a274cd84585d9c33f696e36f847

commit e4ad5e722cec9a274cd84585d9c33f696e36f847
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Aug 21 08:32:36 2015 -0700

    Fix a typo in linux lxstat.c
    
    	* sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.

diff --git a/ChangeLog b/ChangeLog
index 8fc12f4..64ef2ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-08-21  H.J. Lu  <hongjiu.lu@intel.com>
 
+	* sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.
+
+2015-08-21  H.J. Lu  <hongjiu.lu@intel.com>
+
 	* sysdeps/unix/sysdep.h (INLINE_SYSCALL_RETURN): New.
 	(INLINE_SYSCALL_ERROR_RETURN): Likewise.
 	* sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Use
diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c
index ae3f33c..7404ecd 100644
--- a/sysdeps/unix/sysv/linux/lxstat.c
+++ b/sysdeps/unix/sysv/linux/lxstat.c
@@ -35,8 +35,8 @@ int
 __lxstat (int vers, const char *name, struct stat *buf)
 {
   if (vers == _STAT_VER_KERNEL)
-    return INLINE_SYSCALL_ERROR_RETURN (lstat, 2, int, name,
-					(struct kernel_stat *) buf);
+    return INLINE_SYSCALL_RETURN (lstat, 2, int, name,
+				  (struct kernel_stat *) buf);
 
 #ifdef STAT_IS_KERNEL_STAT
   return INLINE_SYSCALL_ERROR_RETURN (-EINVAL, int, -1)

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

Summary of changes:
 ChangeLog                        |    4 ++++
 sysdeps/unix/sysv/linux/lxstat.c |    4 ++--
 2 files changed, 6 insertions(+), 2 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]