Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 20 Aug 2001 06:59:59 +0000 (06:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 20 Aug 2001 06:59:59 +0000 (06:59 +0000)
* io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.

ChangeLog
io/fts.c

index 19aa87f..a7d3ad1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2001-08-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.
+
        * sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy.
        * sunrpc/xdr_rec.c: Likewise.
        * sunrpc/xdr_mem.c: Likewise.
index bfe41d3..da33745 100644 (file)
--- a/io/fts.c
+++ b/io/fts.c
@@ -1091,14 +1091,14 @@ fts_safe_changedir(sp, p, fd, path)
        const char *path;
 {
        int ret, oerrno, newfd;
-       struct stat sb;
+       struct stat64 sb;
 
        newfd = fd;
        if (ISSET(FTS_NOCHDIR))
                return (0);
        if (fd < 0 && (newfd = __open(path, O_RDONLY, 0)) < 0)
                return (-1);
-       if (__fstat(newfd, &sb)) {
+       if (__fxstat64(_STAT_VER, newfd, &sb)) {
                ret = -1;
                goto bail;
        }