diff options
| author | Pierre Joye <pajoye@php.net> | 2009-01-07 12:59:17 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2009-01-07 12:59:17 +0000 |
| commit | 10367ae921542b53f4b97c36a05e2dfed719dfa0 (patch) | |
| tree | 07483adaedae20527621aa0ab84eb9a7941efb6d | |
| parent | 2dcc8c03939907a8b3e03579f22fb997538d52da (diff) | |
| download | php-git-10367ae921542b53f4b97c36a05e2dfed719dfa0.tar.gz | |
- fix parameter parsing options
| -rw-r--r-- | ext/standard/dns_win32.c | 2 |
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; } |
