From: Antony Dovgal Date: Mon, 14 May 2007 11:33:34 +0000 (+0000) Subject: fix CS X-Git-Tag: php-5.2.3RC1~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=725260ea0f083efaea66ba46ee32871804884a77;p=php fix CS --- diff --git a/ext/standard/dns.c b/ext/standard/dns.c index 4e4242458b..ee371e41b3 100644 --- a/ext/standard/dns.c +++ b/ext/standard/dns.c @@ -265,8 +265,7 @@ PHP_FUNCTION(dns_check_record) type = T_MX; convert_to_string_ex(arg1); - if (Z_STRLEN_PP(arg1) == 0) - { + if (Z_STRLEN_PP(arg1) == 0) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host cannot be empty"); RETURN_FALSE; } @@ -279,8 +278,7 @@ PHP_FUNCTION(dns_check_record) convert_to_string_ex(arg1); convert_to_string_ex(arg2); - if (Z_STRLEN_PP(arg1) == 0 || Z_STRLEN_PP(arg2) == 0) - { + if (Z_STRLEN_PP(arg1) == 0 || Z_STRLEN_PP(arg2) == 0) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host and type cannot be empty"); RETURN_FALSE; }