summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-02-13 19:46:40 +0000
committerMarcus Boerger <helly@php.net>2003-02-13 19:46:40 +0000
commitaa8dfa0b74b7b5bd8a221f66a41ebbe1a35bd49e (patch)
tree830a861ee7d78db3ef5dcb2749c1fec630ec5d10
parent2443adb8b520629acc9687d58d6a24c9c9bc0901 (diff)
downloadphp-git-aa8dfa0b74b7b5bd8a221f66a41ebbe1a35bd49e.tar.gz
fix non FCGI build
-rw-r--r--sapi/cgi/cgi_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index b969446d6f..bdff7f74aa 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -1401,8 +1401,9 @@ consult the installation file that came with this distribution, or visit \n\
*/
if (cgi
#if PHP_FASTCGI
- || fastcgi)
+ || fastcgi
#endif
+ )
{
file_handle.type = ZEND_HANDLE_FILENAME;
file_handle.filename = SG(request_info).path_translated;