diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 02:26:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 02:26:05 +0000 |
commit | 8edf6e0d7e556fa80415ebd35da70ccf594b6373 (patch) | |
tree | 9d62f8c094e8fe32758f68a18845ef90850db924 /sysvipc | |
parent | 3d784d830015dcb614bf2d154e726e67bd10ea32 (diff) | |
download | glibc-8edf6e0d7e556fa80415ebd35da70ccf594b6373.tar.gz |
Update.
* inet/rcmd.c: Use *stat64 instead of *stat internally.
* inet/ruserpass.c: Likewise.
* intl/loadmsgcat.c: Likewise.
* io/getdirname.c: Likewise.
* locale/loadlocale.c: Likewise.
* misc/getusershell.c: Likewise.
* stdlib/canonicalize.c: Likewise.
* sysdeps/posix/euidaccess.c: Likewise.
* sysdeps/posix/isfdtype.c: Likewise.
* sysdeps/posix/posix_fallocate.c: Likewise.
* sysdeps/posix/tempname.c: Likewise.
* sysdeps/unix/grantpt.c: Likewise.
* sysdeps/unix/opendir.c: Likewise.
* sysdeps/unix/sysv/linux/fstatvfs.c: Likewise.
* sysdeps/unix/sysv/linux/internal_statvfs.c: Likewise.
* sysdeps/unix/sysv/linux/ptsname.c: Likewise.
* sysdeps/unix/sysv/linux/statvfs.c: Likewise.
* sysdeps/unix/sysv/linux/ttyname.c: Likewise.
* sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
* sysvipc/ftok.c: Likewise.
* time/getdate.c: Likewise.
* time/getdate.c: Add extra access test.
2000-08-31 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'sysvipc')
-rw-r--r-- | sysvipc/ftok.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysvipc/ftok.c b/sysvipc/ftok.c index b0199acda6..05f8c76abc 100644 --- a/sysvipc/ftok.c +++ b/sysvipc/ftok.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. @@ -25,10 +25,10 @@ ftok (pathname, proj_id) const char *pathname; int proj_id; { - struct stat st; + struct stat64 st; key_t key; - if (__xstat (_STAT_VER, pathname, &st) < 0) + if (__xstat64 (_STAT_VER, pathname, &st) < 0) return (key_t) -1; key = ((st.st_ino & 0xffff) | ((st.st_dev & 0xff) << 16) |