summaryrefslogtreecommitdiff
path: root/main/php_open_temporary_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/php_open_temporary_file.c')
-rw-r--r--main/php_open_temporary_file.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/main/php_open_temporary_file.c b/main/php_open_temporary_file.c
index 3c9111c02d..b64ddc8dfe 100644
--- a/main/php_open_temporary_file.c
+++ b/main/php_open_temporary_file.c
@@ -106,9 +106,6 @@ static int php_do_open_temporary_file(const char *path, const char *pfx, char **
#endif
;
#endif
-#ifdef NETWARE
- char *file_path = NULL;
-#endif
if (!path) {
return -1;
@@ -133,12 +130,6 @@ static int php_do_open_temporary_file(const char *path, const char *pfx, char **
VCWD_CHMOD(opened_path, 0600);
fd = VCWD_OPEN_MODE(opened_path, open_flags, 0600);
}
-#elif defined(NETWARE)
- /* Using standard mktemp() implementation for NetWare */
- file_path = mktemp(opened_path);
- if (file_path) {
- fd = VCWD_OPEN(file_path, open_flags);
- }
#elif defined(HAVE_MKSTEMP)
fd = mkstemp(opened_path);
#else