about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/fchownat.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-11-16 00:36:16 +0000
committerUlrich Drepper <drepper@redhat.com>2005-11-16 00:36:16 +0000
commitbaf532c12785a7c85493d6b6b2345f509b1d6389 (patch)
tree46583b8da85d66706dedf85f3ce47b819f4bf8c4 /sysdeps/unix/sysv/linux/fchownat.c
parent7761a3ac532d50d500bafc073e02ce17b52be377 (diff)
downloadglibc-baf532c12785a7c85493d6b6b2345f509b1d6389.tar.gz
glibc-baf532c12785a7c85493d6b6b2345f509b1d6389.tar.xz
glibc-baf532c12785a7c85493d6b6b2345f509b1d6389.zip
* sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
	Return -1 on failure.
	* sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
	* sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise..
	* sysdeps/unix/sysv/linux/fxstatat64.c [__ASSUME_STAT64_SYSCALL]
	(__fxstatat64): Handle errors.
Diffstat (limited to 'sysdeps/unix/sysv/linux/fchownat.c')
-rw-r--r--sysdeps/unix/sysv/linux/fchownat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/fchownat.c b/sysdeps/unix/sysv/linux/fchownat.c
index d3cb992a09..d776c65a1f 100644
--- a/sysdeps/unix/sysv/linux/fchownat.c
+++ b/sysdeps/unix/sysv/linux/fchownat.c
@@ -67,7 +67,10 @@ fchownat (fd, file, owner, group, flag)
     result = INTERNAL_SYSCALL (chown, err, 3, file, owner, group);
 
   if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 0))
-    __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
+    {
+      __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
+      result = -1;
+    }
 
   return result;
 }