summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-01-07 12:59:17 +0000
committerPierre Joye <pajoye@php.net>2009-01-07 12:59:17 +0000
commit10367ae921542b53f4b97c36a05e2dfed719dfa0 (patch)
tree07483adaedae20527621aa0ab84eb9a7941efb6d
parent2dcc8c03939907a8b3e03579f22fb997538d52da (diff)
downloadphp-git-10367ae921542b53f4b97c36a05e2dfed719dfa0.tar.gz
- fix parameter parsing options
-rw-r--r--ext/standard/dns_win32.c2
1 files changed, 1 insertions, 1 deletions
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;
}