summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-08-27 18:18:34 +0000
committerAndi Gutmans <andi@php.net>2000-08-27 18:18:34 +0000
commit989203cf9c9a40bfa4c3f9bc20e7e15520c4aff9 (patch)
tree54073a8d7035d999f92de5149e5a457c1f18a5aa /main/php.h
parent1f7b735290d24df5fcd31924fcad6035ea9a53d8 (diff)
downloadphp-git-989203cf9c9a40bfa4c3f9bc20e7e15520c4aff9.tar.gz
- Test commit msg. This is Andi and it seems to come from Zeev.
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h
index 906fca8811..65b25739c7 100644
--- a/main/php.h
+++ b/main/php.h
@@ -337,7 +337,8 @@ PHPAPI int cfg_get_string(char *varname, char **result);
#ifndef PHP_WIN32
#define V_CHOWN(path,owner,group) virtual_chown(path,owner,group)
#endif
-#else
+
+#else /* !defined(VIRTUAL_DIR) */
#define V_GETCWD(buff, size) getcwd(buff,size)
#define V_FOPEN(path, mode) fopen(path, mode)
@@ -361,7 +362,8 @@ PHPAPI int cfg_get_string(char *varname, char **result);
#ifndef PHP_WIN32
#define V_CHOWN(path,owner,group) chown(path,owner,group)
#endif
-#endif
+
+#endif /* VIRTUAL_DIR */
#include "zend_constants.h"