From 6481440f3fe85ccbb8988d7edddb3fcadb0ee7c9 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 18 Jun 2011 17:41:56 +0000 Subject: [PATCH] - Fixed ZTS build --- sapi/fpm/fpm/fpm_main.c | 2 +- sapi/fpm/fpm/fpm_status.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sapi/fpm/fpm/fpm_main.c b/sapi/fpm/fpm/fpm_main.c index 43edfca72d..66d98de7c8 100644 --- a/sapi/fpm/fpm/fpm_main.c +++ b/sapi/fpm/fpm/fpm_main.c @@ -1854,7 +1854,7 @@ consult the installation file that came with this distribution, or visit \n\ goto fastcgi_request_done; } - if (fpm_status_handle_request()) { + if (fpm_status_handle_request(TSRMLS_C)) { goto fastcgi_request_done; } diff --git a/sapi/fpm/fpm/fpm_status.c b/sapi/fpm/fpm/fpm_status.c index 1a2fd72520..22ad159478 100644 --- a/sapi/fpm/fpm/fpm_status.c +++ b/sapi/fpm/fpm/fpm_status.c @@ -160,7 +160,7 @@ void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int } /* }}} */ -int fpm_status_handle_request() /* {{{ */ +int fpm_status_handle_request(TSRMLS_D) /* {{{ */ { struct fpm_status_s status; char *buffer, *syntax; -- 2.50.1