From: Jon Parise Date: Sun, 27 Jan 2002 07:15:07 +0000 (+0000) Subject: Add a comment indicating that this return statement will never be reached. X-Git-Tag: PRE_ISSET_PATCH~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d299bdc5d92fca6d8deee67a9b7272d56a4834d3;p=php Add a comment indicating that this return statement will never be reached. # Perhaps it should just be removed? --- diff --git a/ext/standard/mail.c b/ext/standard/mail.c index 412cceb41b..75afd5a223 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -173,7 +173,8 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char php_error(E_WARNING, "Could not execute mail delivery program"); return 0; } - return 1; + + return 1; /* never reached */ } /* }}} */