diff options
author | Tjerk Meesters <datibbaw@php.net> | 2014-07-15 20:12:33 +0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-11-30 22:42:31 -0800 |
commit | 0109eb07cf251e8c66d428e612f2b747e7e68a44 (patch) | |
tree | 64498f66436b2ab00fa55401155c3126efe061ba /ext/standard/dns_win32.c | |
parent | f2b7aeda2b79b0f2a4f4ba2bcdebe3574b1d3a9e (diff) | |
download | php-git-0109eb07cf251e8c66d428e612f2b747e7e68a44.tar.gz |
Changed based on comments and make its behaviour equal to the Windows version
Diffstat (limited to 'ext/standard/dns_win32.c')
-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 963d1f7a54..a0b917c5ca 100644 --- a/ext/standard/dns_win32.c +++ b/ext/standard/dns_win32.c @@ -456,7 +456,7 @@ PHP_FUNCTION(dns_get_record) if (status == DNS_INFO_NO_RECORDS || status == DNS_ERROR_RCODE_NAME_ERROR) { continue; } else { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Dns Query failed"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "DNS Query failed"); zval_dtor(return_value); RETURN_FALSE; } |