diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2002-12-31 00:04:52 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2002-12-31 00:04:52 +0000 |
| commit | 87a8b040512601a9b1c82b490a9e3d2d6fadfc26 (patch) | |
| tree | 5c31784e5c80df2d92553c3774fd5f8152712d21 /main | |
| parent | 6f6bc82de797537f6d8b1db96497dd3d7d556f9a (diff) | |
| download | php-git-87a8b040512601a9b1c82b490a9e3d2d6fadfc26.tar.gz | |
Fix ZTS build.
Diffstat (limited to 'main')
| -rw-r--r-- | main/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/output.c b/main/output.c index 8a5cfe6cbb..2a170b5678 100644 --- a/main/output.c +++ b/main/output.c @@ -409,7 +409,7 @@ static int php_ob_init_named(uint initial_size, uint block_size, char *handler_n { if (OG(ob_nesting_level)>0) { #ifdef HAVE_ZLIB - if (!strncmp(handler_name, "ob_gzhandler", sizeof("ob_gzhandler")) && php_ob_gzhandler_check(TSRMLS_CC)) { + if (!strncmp(handler_name, "ob_gzhandler", sizeof("ob_gzhandler")) && php_ob_gzhandler_check(TSRMLS_C)) { return FAILURE; } #endif |
