]> granicus.if.org Git - php/commitdiff
- WS fix.
authorMarkus Fischer <mfischer@php.net>
Sat, 16 Mar 2002 15:50:20 +0000 (15:50 +0000)
committerMarkus Fischer <mfischer@php.net>
Sat, 16 Mar 2002 15:50:20 +0000 (15:50 +0000)
ext/standard/mail.c

index 24127ddbf37887ffd88aa32e8be363769b76d0a6..8b18aed1a5b177de7955772083cbc57a63ad3d58 100644 (file)
@@ -171,9 +171,9 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
                if (ret == -1)
 #else
 #if defined(EX_TEMPFAIL)
-               if ((ret != EX_OK)&&(ret != EX_TEMPFAIL)) 
+               if ((ret != EX_OK)&&(ret != EX_TEMPFAIL))
 #else
-               if (ret != EX_OK) 
+               if (ret != EX_OK)
 #endif
 #endif
                {
@@ -187,7 +187,7 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
                return 0;
        }
 
-       return 1;       /* never reached */
+       return 1; /* never reached */
 }
 /* }}} */
 
@@ -199,12 +199,12 @@ PHP_MINFO_FUNCTION(mail)
 
 #ifdef PHP_WIN32
        if (!sendmail_path) {
-        php_info_print_table_row(2, "Internal Sendmail Support for Windows", "enabled");
+               php_info_print_table_row(2, "Internal Sendmail Support for Windows", "enabled");
        } else {
-        php_info_print_table_row(2, "Path to sendmail", sendmail_path);
+               php_info_print_table_row(2, "Path to sendmail", sendmail_path);
        }
 #else
-    php_info_print_table_row(2, "Path to sendmail", sendmail_path);
+       php_info_print_table_row(2, "Path to sendmail", sendmail_path);
 #endif
 }
 /* }}} */