From d299bdc5d92fca6d8deee67a9b7272d56a4834d3 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Sun, 27 Jan 2002 07:15:07 +0000 Subject: [PATCH] Add a comment indicating that this return statement will never be reached. # Perhaps it should just be removed? --- ext/standard/mail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ } /* }}} */ -- 2.50.1