summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@php.net>2002-01-27 07:15:07 +0000
committerJon Parise <jon@php.net>2002-01-27 07:15:07 +0000
commitd299bdc5d92fca6d8deee67a9b7272d56a4834d3 (patch)
tree837466d90a346b430228b8d3228140d7c6d76d96
parent539114339c68644814e104ef814f7c5d752d4b58 (diff)
downloadphp-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.c3
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 */
}
/* }}} */