diff options
author | Anatol Belski <ab@php.net> | 2016-12-19 00:50:29 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-12-19 00:50:29 +0100 |
commit | 88c1491c6df350b565c3f88013ec31a996043f5d (patch) | |
tree | fe764670d665f60345d52ad4f342f52c2d9d83a6 | |
parent | cf46ac1179376f58895feb6ed914b03bea19e295 (diff) | |
download | php-git-88c1491c6df350b565c3f88013ec31a996043f5d.tar.gz |
fix proto
-rw-r--r-- | ext/standard/dns.c | 2 | ||||
-rw-r--r-- | ext/standard/dns_win32.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/dns.c b/ext/standard/dns.c index 6cb518b301..de277a3035 100644 --- a/ext/standard/dns.c +++ b/ext/standard/dns.c @@ -761,7 +761,7 @@ static u_char *php_parserr(u_char *cp, u_char *end, querybuf *answer, int type_t } /* }}} */ -/* {{{ proto array|false dns_get_record(string hostname [, int type[, array authns, array addtl]]) +/* {{{ proto array|false dns_get_record(string hostname [, int type[, array &authns[, array &addtl[, bool raw]]]]) Get any Resource Record corresponding to a given Internet host name */ PHP_FUNCTION(dns_get_record) { diff --git a/ext/standard/dns_win32.c b/ext/standard/dns_win32.c index 17f2e5434e..d63bfd6a66 100644 --- a/ext/standard/dns_win32.c +++ b/ext/standard/dns_win32.c @@ -341,7 +341,7 @@ static void php_parserr(PDNS_RECORD pRec, int type_to_fetch, int store, int raw, } /* }}} */ -/* {{{ proto array|false dns_get_record(string hostname [, int type[, array authns, array addtl]]) +/* {{{ proto array|false dns_get_record(string hostname [, int type[, array &authns[, array &addtl[, bool raw]]]]) Get any Resource Record corresponding to a given Internet host name */ PHP_FUNCTION(dns_get_record) { |