diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-18 04:01:20 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-18 04:01:20 +0000 |
commit | 3ee4e65c95fa8eb5366569a22ffd6e09ce9741f1 (patch) | |
tree | 20bbcd96e0f6c1483c87a00273bcdc1ec94a097a /ext/standard/mail.c | |
parent | 8a581c3536e1c4fab7ecfa4e1c044d3e5ebc5ab2 (diff) | |
download | php-git-3ee4e65c95fa8eb5366569a22ffd6e09ce9741f1.tar.gz |
More php3_ annihilation
Diffstat (limited to 'ext/standard/mail.c')
-rw-r--r-- | ext/standard/mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/mail.c b/ext/standard/mail.c index 90e3d5696d..7ff1e584a9 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -98,7 +98,7 @@ PHP_FUNCTION(mail) headers = (*argv[3])->value.str.val; } - if (_php3_mail(to, subject, message, headers)){ + if (php_mail(to, subject, message, headers)){ RETURN_TRUE; } else { RETURN_FALSE; @@ -106,7 +106,7 @@ PHP_FUNCTION(mail) } /* }}} */ -int _php3_mail(char *to, char *subject, char *message, char *headers) +int php_mail(char *to, char *subject, char *message, char *headers) { #if MSVC5 int tsm_err; |