diff options
| author | foobar <sniper@php.net> | 2005-12-06 01:14:02 +0000 | 
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-12-06 01:14:02 +0000 | 
| commit | b9af8f271921ff5920b106844b4f6761f4b6e8b0 (patch) | |
| tree | d59cd22bee0c7efd84f870cc0eead7d5886238fb /sapi/apache/php_apache.c | |
| parent | d95275052bbb9b8c9b2fcadaafe03b4e2488203b (diff) | |
| download | php-git-b9af8f271921ff5920b106844b4f6761f4b6e8b0.tar.gz | |
MFH: nuke php3 legacy
Diffstat (limited to 'sapi/apache/php_apache.c')
| -rw-r--r-- | sapi/apache/php_apache.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index adb3e77552..787d09a057 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -135,7 +135,7 @@ PHP_FUNCTION(apache_child_terminate)     Get and set Apache request notes */  PHP_FUNCTION(apache_note)  { -	pval **arg_name, **arg_val; +	zval **arg_name, **arg_val;  	char *note_val;  	int arg_count = ZEND_NUM_ARGS(); @@ -304,7 +304,7 @@ PHP_MINFO_FUNCTION(apache)   */  PHP_FUNCTION(virtual)  { -	pval **filename; +	zval **filename;  	request_rec *rr = NULL;  	if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == FAILURE) { @@ -411,7 +411,7 @@ PHP_FUNCTION(apache_setenv)     Perform a partial request of the given URI to obtain information about it */  PHP_FUNCTION(apache_lookup_uri)  { -	pval **filename; +	zval **filename;  	request_rec *rr=NULL;  	if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == FAILURE) { @@ -485,7 +485,7 @@ This function is most likely a bad idea.  Just playing with it for now.  PHP_FUNCTION(apache_exec_uri)  { -	pval **filename; +	zval **filename;  	request_rec *rr=NULL;  	TSRMLS_FETCH();  | 
