diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-14 15:23:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-14 15:23:56 +0000 |
commit | 60876a75445b1b65e4a0ec54e18205a79f79466b (patch) | |
tree | f1ed7e59c543e092bbd492af3654abfad53a4344 /stdio-common/tempnam.c | |
parent | 59036602bf40d3b35884280881be4edfb1378430 (diff) | |
download | glibc-60876a75445b1b65e4a0ec54e18205a79f79466b.tar glibc-60876a75445b1b65e4a0ec54e18205a79f79466b.tar.gz glibc-60876a75445b1b65e4a0ec54e18205a79f79466b.tar.bz2 glibc-60876a75445b1b65e4a0ec54e18205a79f79466b.zip |
Update.
* include/stdio.h: Add new parameter to __path_search.
* libio/oldtmpfile.c: Add 0 as new parameter to __path_search.
* stdio-common/tmpfile.c: Likewise.
* stdio-common/tmpfile64.c: Likewise.
* stdio-common/tmpnam.c: Likewise.
* stdio-common/tmpnam_r.c: Likewise.
* stdio-common/tempnam.c: Add 1 as new parameter to __path_search.
* sysdeps/posix/tempname.c: Add new parameter. If value is nonzero
consider TMPDIR environment variable and dir parameter. Otherwise not.
* stdio-common/Makefile (tests): Add tst-tmpnam.
* stdio-common/tst-tmpnam.c: New file.
Diffstat (limited to 'stdio-common/tempnam.c')
-rw-r--r-- | stdio-common/tempnam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tempnam.c b/stdio-common/tempnam.c index 5d4960f216..47ecf6d56d 100644 --- a/stdio-common/tempnam.c +++ b/stdio-common/tempnam.c @@ -31,7 +31,7 @@ tempnam (const char *dir, const char *pfx) { char buf[FILENAME_MAX]; - if (__path_search (buf, FILENAME_MAX, dir, pfx)) + if (__path_search (buf, FILENAME_MAX, dir, pfx, 1)) return NULL; if (__gen_tempname (buf, 0, 0)) |