about summary refs log tree commit diff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2004-11-03 01:51:44 +0000
committerRoland McGrath <roland@gnu.org>2004-11-03 01:51:44 +0000
commita237785d08a0f75cb7d92a0c0e01f65314d209d3 (patch)
tree95c1dd62d8319bc67531739effa3eb8a57618721 /sysdeps/generic
parentb1845d07a17d7b1e821cb92b5dbf09ae2ad1c63b (diff)
downloadglibc-a237785d08a0f75cb7d92a0c0e01f65314d209d3.tar.gz
glibc-a237785d08a0f75cb7d92a0c0e01f65314d209d3.tar.xz
glibc-a237785d08a0f75cb7d92a0c0e01f65314d209d3.zip
2004-11-03 Marcus Brinkmann <marcus@gnu.org>
	* sysdeps/generic/tempname.c (__path_search): Add missing argument
	TRY_TMPDIR.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/tempname.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/generic/tempname.c b/sysdeps/generic/tempname.c
index fd4db36dc3..60c94d6409 100644
--- a/sysdeps/generic/tempname.c
+++ b/sysdeps/generic/tempname.c
@@ -25,11 +25,12 @@
    template suitable for use in __gen_tempname into TMPL, bounded
    by TMPL_LEN. */
 int
-__path_search (tmpl, tmpl_len, dir, pfx)
+__path_search (tmpl, tmpl_len, dir, pfx, try_tmpdir)
      char *tmpl;
      size_t tmpl_len;
      const char *dir;
      const char *pfx;
+     int try_tmpdir;
 {
   __set_errno (ENOSYS);
   return -1;