summaryrefslogtreecommitdiff
path: root/sysdeps/posix/tempname.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-13 14:52:55 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-13 14:52:55 +0000
commit550be6cdb0585fb7c5ec32d583b40ab6ef5daed1 (patch)
treeb5296d324fac9519cb4f9d25b8cda4766f5cdb69 /sysdeps/posix/tempname.c
parent3bb266e0101d17db7812daef1a7fe0aaa97b7e47 (diff)
Update.
1998-12-13 Ulrich Drepper <drepper@cygnus.com> * sysdeps/posix/tempname.c: Use __xstat instead of __stat. * sysdeps/unix/grantpt.c: Likewise. * sysdeps/unix/sysv/linux/ptsname.c: Likewise. * sysvipc/ftok.c: Likewise. Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
Diffstat (limited to 'sysdeps/posix/tempname.c')
-rw-r--r--sysdeps/posix/tempname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/posix/tempname.c b/sysdeps/posix/tempname.c
index d49971db26..97a01d2b7e 100644
--- a/sysdeps/posix/tempname.c
+++ b/sysdeps/posix/tempname.c
@@ -33,7 +33,7 @@ static int
direxists (const char *dir)
{
struct stat buf;
- return __stat (dir, &buf) == 0 && S_ISDIR (buf.st_mode);
+ return __xstat (_STAT_VER, dir, &buf) == 0 && S_ISDIR (buf.st_mode);
}
/* Path search algorithm, for tmpnam, tmpfile, etc. If DIR is
@@ -161,7 +161,7 @@ __gen_tempname (char *tmpl, int openit, int largefile)
else
{
struct stat st;
- if (__stat (tmpl, &st) < 0)
+ if (__xstat (_STAT_VER, tmpl, &st) < 0)
{
if (errno == ENOENT)
{