From: Jouni Ahto Date: Mon, 10 Jul 2000 14:52:17 +0000 (+0000) Subject: - Oops, missed two GLOBAL()'s. X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~325 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=51692417e88370f490897469fb61b7399a40a48c;p=php - Oops, missed two GLOBAL()'s. --- 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);