From 32be6f268b59eed7ec5f1bcfd0a88e112a50dd85 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 29 Mar 2004 21:44:07 +0000 Subject: Fix for Bug #26757: session.save_path defaults to bogus value on win32 Merge from branch with one main difference: the default save_path is set to the empty string on all platforms, whereas the code in the branch only does so for win32. --- main/php_open_temporary_file.h | 1 + 1 file changed, 1 insertion(+) (limited to 'main/php_open_temporary_file.h') diff --git a/main/php_open_temporary_file.h b/main/php_open_temporary_file.h index db1c5f8493..500d2429c3 100644 --- a/main/php_open_temporary_file.h +++ b/main/php_open_temporary_file.h @@ -24,6 +24,7 @@ BEGIN_EXTERN_C() PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC); PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC); +PHPAPI const char *php_get_temporary_directory(void); END_EXTERN_C() #endif /* PHP_OPEN_TEMPORARY_FILE_H */ -- cgit v1.2.1