diff options
Diffstat (limited to 'ext/standard/dns.c')
| -rw-r--r-- | ext/standard/dns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/dns.c b/ext/standard/dns.c index f78726c516..d5b8d7e9b1 100644 --- a/ext/standard/dns.c +++ b/ext/standard/dns.c @@ -236,7 +236,7 @@ PHP_FUNCTION(getmxrr) switch(ARG_COUNT(ht)) { case 2: - if (getParameters(ht, 2, &host, &mx_list) == FAILURE) { + if (zend_get_parameters(ht, 2, &host, &mx_list) == FAILURE) { WRONG_PARAM_COUNT; } if (!ParameterPassedByReference(ht, 2)) { @@ -245,7 +245,7 @@ PHP_FUNCTION(getmxrr) } break; case 3: - if (getParameters(ht, 3, &host, &mx_list, &weight_list) == FAILURE) { + if (zend_get_parameters(ht, 3, &host, &mx_list, &weight_list) == FAILURE) { WRONG_PARAM_COUNT; } if (!ParameterPassedByReference(ht, 2) || !ParameterPassedByReference(ht, 3)) { |
