]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Revert "Fix a typo in linux lxstat.c"
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 21 Aug 2015 16:57:02 +0000 (09:57 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 21 Aug 2015 16:57:02 +0000 (09:57 -0700)
This reverts commit e4ad5e722cec9a274cd84585d9c33f696e36f847.

ChangeLog
sysdeps/unix/sysv/linux/lxstat.c

index 64ef2aebd2f27ff057002dbac88330f19f552abe..8fc12f4c532bbddbb81b6ea835c4596bbc406160 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,3 @@
-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.
index 7404ecd40f8b77c5cb88e9cf554c2ea31cccc36a..ae3f33cb7fd1d01a7f188e9f0722038f3a73aa72 100644 (file)
@@ -35,8 +35,8 @@ int
 __lxstat (int vers, const char *name, struct stat *buf)
 {
   if (vers == _STAT_VER_KERNEL)
-    return INLINE_SYSCALL_RETURN (lstat, 2, int, name,
-                                 (struct kernel_stat *) buf);
+    return INLINE_SYSCALL_ERROR_RETURN (lstat, 2, int, name,
+                                       (struct kernel_stat *) buf);
 
 #ifdef STAT_IS_KERNEL_STAT
   return INLINE_SYSCALL_ERROR_RETURN (-EINVAL, int, -1)