diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/readdir64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/readdir64.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/readdir64.c b/sysdeps/unix/sysv/linux/readdir64.c index 710f934ebb..5a19e220aa 100644 --- a/sysdeps/unix/sysv/linux/readdir64.c +++ b/sysdeps/unix/sysv/linux/readdir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,9 +27,6 @@ #include <dirstream.h> -extern ssize_t __getdirentries64 (int, char *, size_t, off_t *); - - /* Read a directory entry from DIRP. */ struct dirent64 * __readdir64 (DIR *dirp) @@ -47,7 +44,6 @@ __readdir64 (DIR *dirp) /* We've emptied out our buffer. Refill it. */ size_t maxread; - off_t base; ssize_t bytes; #ifndef _DIRENT_HAVE_D_RECLEN @@ -57,8 +53,7 @@ __readdir64 (DIR *dirp) maxread = dirp->allocation; #endif - base = dirp->filepos; - bytes = __getdirentries64 (dirp->fd, dirp->data, maxread, &base); + bytes = __getdents64 (dirp->fd, dirp->data, maxread); if (bytes <= 0) { dp = NULL; |