- Oops, missed two GLOBAL()'s.

This commit is contained in:
Jouni Ahto 2000-07-10 14:52:17 +00:00
parent 4ecbeb8810
commit 51692417e8

View file

@ -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);