From: Ulrich Drepper Date: Mon, 20 Aug 2001 06:59:59 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2-2-5~423 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faf4c7f081c709a26558883c54af214fd495a7a8;p=thirdparty%2Fglibc.git Update. * io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat. --- diff --git a/ChangeLog b/ChangeLog index 19aa87f32d2..a7d3ad1fcb6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-08-19 Ulrich Drepper + * 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. diff --git a/io/fts.c b/io/fts.c index bfe41d3f44c..da337456ce7 100644 --- 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; }