Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 30 Dec 2002 02:31:19 +0000 (02:31 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 30 Dec 2002 02:31:19 +0000 (02:31 +0000)
2002-12-24  GOTO Masanori  <gotom@debian.or.jp>

* sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Fix condition
checking of return value ENOSYS from getdents64.

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

index 983d826..c1d35fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-24  GOTO Masanori  <gotom@debian.or.jp>
+
+       * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Fix condition
+       checking of return value ENOSYS from getdents64.
+
 2002-12-28  Andreas Schwab  <schwab@suse.de>
 
        * sysdeps/unix/Makefile: Include $(common-objpfx)s-proto-cancel.d.
index daef5a5..2e6b485 100644 (file)
@@ -126,7 +126,7 @@ __GETDENTS (int fd, char *buf, size_t nbytes)
       retval = INLINE_SYSCALL (getdents64, 3, fd, CHECK_N(kbuf, kbytes),
                               kbytes);
 # ifndef __ASSUME_GETDENTS64_SYSCALL
-      if (retval != -1 || errno != EINVAL)
+      if (retval != -1 || (errno != EINVAL && errno != ENOSYS))
 # endif
        {
          const size_t size_diff = (offsetof (struct kernel_dirent64, d_name)