diff options
author | Jon Parise <jon@php.net> | 2002-01-27 07:15:07 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2002-01-27 07:15:07 +0000 |
commit | d299bdc5d92fca6d8deee67a9b7272d56a4834d3 (patch) | |
tree | 837466d90a346b430228b8d3228140d7c6d76d96 | |
parent | 539114339c68644814e104ef814f7c5d752d4b58 (diff) | |
download | php-git-d299bdc5d92fca6d8deee67a9b7272d56a4834d3.tar.gz |
Add a comment indicating that this return statement will never be reached.
# Perhaps it should just be removed?
-rw-r--r-- | ext/standard/mail.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 */ } /* }}} */ |