2004-11-03 Marcus Brinkmann <marcus@gnu.org>

* sysdeps/generic/tempname.c (__path_search): Add missing argument
	TRY_TMPDIR.
This commit is contained in:
Roland McGrath 2004-11-03 01:51:44 +00:00
parent b1845d07a1
commit a237785d08
1 changed files with 2 additions and 1 deletions

View File

@ -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;