From: James Cox Date: Sun, 22 Sep 2002 16:14:11 +0000 (+0000) Subject: typo X-Git-Tag: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1b0230e6dd483f8127e47e29af49cd97e918ae0;p=php typo --- 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