Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 11 Sep 2000 16:06:52 +0000 (16:06 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 11 Sep 2000 16:06:52 +0000 (16:06 +0000)
2000-09-11  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/posix/tempname.c (__gen_tempname): Use __lxstat and __xstat.

ChangeLog
sysdeps/posix/tempname.c

index 8d9ddf7..c64508e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-11  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/posix/tempname.c (__gen_tempname): Use __lxstat and __xstat.
+
 2000-09-10  David S. Miller  <davem@redhat.com>
 
        * sysdeps/sparc/sparc32/__longjmp.S (__longjmp): Correct %fp
index fe38602..0d7af8f 100644 (file)
@@ -179,7 +179,7 @@ __gen_tempname (char *tmpl, int kind)
             succeeds if __xstat fails because the name does not exist.
             Note the continue to bypass the common logic at the bottom
             of the loop.  */
-         if (__xstat64 (_STAT_VER, tmpl, &st) < 0)
+         if (__lxstat64 (_STAT_VER, tmpl, &st) < 0)
            {
              if (errno == ENOENT)
                {