summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2003-06-15 11:50:17 +0000
committerEdin Kadribasic <edink@php.net>2003-06-15 11:50:17 +0000
commitfa48ad6df3f963d87ccfe9f3681b610adfdcba52 (patch)
treebb56780d4afd658c1c9e5affeb41552777dc52a0 /sapi
parent045460edd3af13191081f2e62f813aeda463a68a (diff)
downloadphp-git-fa48ad6df3f963d87ccfe9f3681b610adfdcba52.tar.gz
Fixed ZTS build
Diffstat (limited to 'sapi')
-rw-r--r--sapi/nsapi/nsapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c
index 197ccb2b9f..ebbf470c9b 100644
--- a/sapi/nsapi/nsapi.c
+++ b/sapi/nsapi/nsapi.c
@@ -337,7 +337,7 @@ PHP_FUNCTION(virtual)
RETURN_FALSE;
} else {
php_end_ob_buffers(1 TSRMLS_CC);
- php_header();
+ php_header(TSRMLS_C);
/* do the sub-request */
/* thanks to Chris Elving from Sun for this code sniplet */
@@ -422,7 +422,7 @@ PHP_FUNCTION(nsapi_response_headers)
RETURN_FALSE;
}
- php_header();
+ php_header(TSRMLS_C);
for (i=0; i < rc->rq->srvhdrs->hsize; i++) {
entry=rc->rq->srvhdrs->ht[i];