summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Radi <phanto@php.net>2002-12-01 20:28:54 +0000
committerHarald Radi <phanto@php.net>2002-12-01 20:28:54 +0000
commite25b194525137f579c97cba652b9f5b297d77865 (patch)
tree9d25730ea054de144594bfc1593833931e263674
parent9f361fc0f824c1997d971fc8e2cd06c9596da09b (diff)
downloadphp-git-e25b194525137f579c97cba652b9f5b297d77865.tar.gz
rename callbacks to fit the original name
-rw-r--r--sapi/milter/php_milter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/milter/php_milter.c b/sapi/milter/php_milter.c
index 6fb3f3b5a2..dbff1e47fb 100644
--- a/sapi/milter/php_milter.c
+++ b/sapi/milter/php_milter.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Author: Harald Radi <phanto@php.net |
+ | Author: Harald Radi <phanto@php.net> |
| Parts based on CGI SAPI Module by |
| Rasmus Lerdorf, Stig Bakken and Zeev Suraski |
+----------------------------------------------------------------------+
@@ -260,7 +260,7 @@ static sfsistat mlfi_envfrom(SMFICTX *ctx, char **argv)
ALLOC_ZVAL(param[0]);
INIT_PZVAL(param[0]);
- ZVAL_STRING(&function_name, "milter_envelope_from", 0);
+ ZVAL_STRING(&function_name, "milter_envfrom", 0);
array_init(param[0]);
while (*argv) {
@@ -300,7 +300,7 @@ static sfsistat mlfi_envrcpt(SMFICTX *ctx, char **argv)
ALLOC_ZVAL(param[0]);
INIT_PZVAL(param[0]);
- ZVAL_STRING(&function_name, "milter_envelope_recipient", 0);
+ ZVAL_STRING(&function_name, "milter_envrcpt", 0);
array_init(param[0]);
while (*argv) {