about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/ustat.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-27 17:02:41 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-27 17:02:41 +0000
commitb1c74afa76019a45c7de3a9eab3144bc0d1fce58 (patch)
tree71f97311cccd0c253e6bfac001fc4cb53c9afc06 /sysdeps/unix/sysv/linux/ustat.c
parentdc2b1649439f24a49a06e641028b1c0a4090a1a8 (diff)
downloadglibc-b1c74afa76019a45c7de3a9eab3144bc0d1fce58.tar.gz
glibc-b1c74afa76019a45c7de3a9eab3144bc0d1fce58.tar.xz
glibc-b1c74afa76019a45c7de3a9eab3144bc0d1fce58.zip
Update.
2003-09-27  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/ustat.c (ustat): Set errno to EINVAL if
	the device ID is invalid and return -1.
	* sysdeps/unix/sysv/linux/xmknod.c (__xmknod): Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ustat.c')
-rw-r--r--sysdeps/unix/sysv/linux/ustat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/ustat.c b/sysdeps/unix/sysv/linux/ustat.c
index e1acbed5b5..6ac30d8d80 100644
--- a/sysdeps/unix/sysv/linux/ustat.c
+++ b/sysdeps/unix/sysv/linux/ustat.c
@@ -33,7 +33,10 @@ ustat (dev_t dev, struct ustat *ubuf)
   /* We must convert the value to dev_t type used by the kernel.  */
   k_dev =  dev & ((1ULL << 32) - 1);
   if (k_dev != dev)
-    return EOVERFLOW;
+    {
+      __set_errno (EINVAL);
+      return -1;
+    }
 
   return INLINE_SYSCALL (ustat, 2, (unsigned int) k_dev, CHECK_1 (ubuf));
 }