mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
- Oops, missed two GLOBAL()'s.
This commit is contained in:
parent
4ecbeb8810
commit
51692417e8
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue