summaryrefslogtreecommitdiff
path: root/ext/standard/mail.c
diff options
context:
space:
mode:
authorJames Cox <imajes@php.net>2002-09-22 16:14:11 +0000
committerJames Cox <imajes@php.net>2002-09-22 16:14:11 +0000
commitb1b0230e6dd483f8127e47e29af49cd97e918ae0 (patch)
tree679e4fbcc8a3bf5aca9c234970925005b9d8b3a4 /ext/standard/mail.c
parent46d144fe80f8611971818b5bd6d92232b3e8e76f (diff)
downloadphp-git-b1b0230e6dd483f8127e47e29af49cd97e918ae0.tar.gz
typo
Diffstat (limited to 'ext/standard/mail.c')
-rw-r--r--ext/standard/mail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/mail.c b/ext/standard/mail.c
index 5c1cc32dc4..0aee87b675 100644
--- a/ext/standard/mail.c
+++ b/ext/standard/mail.c
@@ -192,7 +192,7 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
if (sendmail) {
#ifndef PHP_WIN32
if (EACCES == errno) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Permission denied; unable to execute shell to run mail delivery binary");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Permission denied: unable to execute shell to run mail delivery binary");
pclose(sendmail);
return 0;
}
@@ -230,7 +230,7 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(mail)
-{
+
char *sendmail_path = INI_STR("sendmail_path");
#ifdef PHP_WIN32