summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorJouni Ahto <jah@php.net>2000-07-10 14:52:17 +0000
committerJouni Ahto <jah@php.net>2000-07-10 14:52:17 +0000
commit51692417e88370f490897469fb61b7399a40a48c (patch)
treeb39be269899d517c5b912c971ede0ebdb15b87e8 /win32
parent4ecbeb8810c6b70caf833262c1c3879358075efc (diff)
downloadphp-git-51692417e88370f490897469fb61b7399a40a48c.tar.gz
- Oops, missed two GLOBAL()'s.
Diffstat (limited to 'win32')
-rw-r--r--win32/sendmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/sendmail.c b/win32/sendmail.c
index e27ceb3e77..11ea803374 100644
--- a/win32/sendmail.c
+++ b/win32/sendmail.c
@@ -240,8 +240,8 @@ int SendText(char *RPath, char *Subject, char *mailTo, char *data, char *headers
token = strtok(tempMailTo, ",");
while(token != NULL)
{
- sprintf(GLOBAL(Buffer), "RCPT TO:<%s>\r\n", token);
- if ((res = Post(GLOBAL(Buffer))) != SUCCESS)
+ sprintf(Buffer, "RCPT TO:<%s>\r\n", token);
+ if ((res = Post(Buffer)) != SUCCESS)
return (res);
if ((res = Ack()) != SUCCESS)
return (res);