]> granicus.if.org Git - php/commitdiff
fix CS
authorAntony Dovgal <tony2001@php.net>
Mon, 14 May 2007 11:33:34 +0000 (11:33 +0000)
committerAntony Dovgal <tony2001@php.net>
Mon, 14 May 2007 11:33:34 +0000 (11:33 +0000)
ext/standard/dns.c

index 4e4242458b41b456e2fe5c2a448a29ddd451a903..ee371e41b33dff18cdd14d5bac3c0bedfc20b04c 100644 (file)
@@ -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;
                        }