diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
commit | a1ad2872eebc17448b115a1817e95b63e3ad17e9 (patch) | |
tree | 6088dc4e590fdc5f85baa8bfe6534aece3fba960 /ext/apache/apache.c | |
parent | f1fcb022be33716d345197de1fde63ad2bcdafca (diff) | |
download | php-git-a1ad2872eebc17448b115a1817e95b63e3ad17e9.tar.gz |
- The tree compiles again
Diffstat (limited to 'ext/apache/apache.c')
-rw-r--r-- | ext/apache/apache.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/apache/apache.c b/ext/apache/apache.c index d29579aaed..f5d9c38c5e 100644 --- a/ext/apache/apache.c +++ b/ext/apache/apache.c @@ -127,7 +127,7 @@ PHP_FUNCTION(apache_note) SLS_FETCH(); if (arg_count<1 || arg_count>2 || - getParametersEx(arg_count,&arg_name,&arg_val) ==FAILURE ) { + zend_get_parameters_ex(arg_count,&arg_name,&arg_val) ==FAILURE ) { WRONG_PARAM_COUNT; } @@ -278,7 +278,7 @@ PHP_FUNCTION(virtual) request_rec *rr = NULL; SLS_FETCH(); - if (ARG_COUNT(ht) != 1 || getParametersEx(1,&filename) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1,&filename) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_string_ex(filename); @@ -351,7 +351,7 @@ PHP_FUNCTION(apache_lookup_uri) request_rec *rr=NULL; SLS_FETCH(); - if (ARG_COUNT(ht) != 1 || getParametersEx(1,&filename) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1,&filename) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_string_ex(filename); @@ -425,7 +425,7 @@ PHP_FUNCTION(apache_exec_uri) request_rec *rr=NULL; SLS_FETCH(); - if (ARG_COUNT(ht) != 1 || getParametersEx(1,&filename) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1,&filename) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_string_ex(filename); |