- Fix another bug in session.c

- Start using the new PHP_GETCWD() and co. macros
This commit is contained in:
Andi Gutmans 2000-03-30 22:38:50 +00:00
parent 69a16e9693
commit f9547241d5
5 changed files with 16 additions and 6 deletions

View file

@ -284,6 +284,16 @@ PHPAPI int cfg_get_string(char *varname, char **result);
#define PUTS_H(str) php_header_write((str), strlen((str)))
#define PUTC_H(c) (php_header_write(&(c), 1), (c))
/* Virtual current directory support */
#ifdef VIRTUAL_DIR
#define PHP_GETCWD(buff, size) virtual_getcwd(buff,size)
#define PHP_FOPEN(path, mode) virtual_fopen(path, mode)
#define PHP_CHDIR(path) virtual_chdir(path)
#else
#define PHP_GETCWD(buff, size) getcwd(buff,size)
#define PHP_FOPEN(path, mode) fopen(path, mode)
#define PHP_CHDIR(path) chdir(path)
#endif
#include "zend_constants.h"