From 1159c84ab7849099d4a717cd05c2d920102040ed Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sun, 5 Aug 2001 01:43:02 +0000 Subject: - TSRMLS_FETCH work - whitespace fixes --- sapi/fastcgi/fastcgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sapi/fastcgi') diff --git a/sapi/fastcgi/fastcgi.c b/sapi/fastcgi/fastcgi.c index 3050bcd6ac..382d148807 100644 --- a/sapi/fastcgi/fastcgi.c +++ b/sapi/fastcgi/fastcgi.c @@ -237,7 +237,7 @@ static void init_request_info( TSRMLS_D ) char *ptr; while( ptr = strrchr(pt,'/') ) { *ptr = 0; - if ( stat(pt,&st) == 0 && S_ISREG(st.st_mode) ) { + if ( stat(pt, &st) == 0 && S_ISREG(st.st_mode) ) { /* * okay, we found the base script! * work out how many chars we had to strip off; @@ -350,7 +350,7 @@ int main(int argc, char *argv[]) #ifdef HAVE_SIGNAL_H #if defined(SIGPIPE) && defined(SIG_IGN) - signal(SIGPIPE,SIG_IGN); /* ignore SIGPIPE in standalone mode so + signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so that sockets created via fsockopen() don't kill PHP if the remote site closes it. in apache|apxs mode apache -- cgit v1.2.1