From b1b0230e6dd483f8127e47e29af49cd97e918ae0 Mon Sep 17 00:00:00 2001 From: James Cox Date: Sun, 22 Sep 2002 16:14:11 +0000 Subject: [PATCH] typo --- ext/standard/mail.c | 4 ++-- 1 file 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 -- 2.50.1