From: Pierre Joye Date: Wed, 7 Jan 2009 12:59:17 +0000 (+0000) Subject: - fix parameter parsing options X-Git-Tag: php-5.4.0alpha1~191^2~4615 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10367ae921542b53f4b97c36a05e2dfed719dfa0;p=php - fix parameter parsing options --- diff --git a/ext/standard/dns_win32.c b/ext/standard/dns_win32.c index 46b14c9332..dd900b1c97 100644 --- a/ext/standard/dns_win32.c +++ b/ext/standard/dns_win32.c @@ -299,7 +299,7 @@ PHP_FUNCTION(dns_get_record) int addtl_recs = 0; IN_ADDR ipaddr; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lz!z!", &hostname, &hostname_len, &type_param, &authns, &addtl) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lzz", &hostname, &hostname_len, &type_param, &authns, &addtl) == FAILURE) { return; }