]> granicus.if.org Git - php/commitdiff
- Oops, missed two GLOBAL()'s.
authorJouni Ahto <jah@php.net>
Mon, 10 Jul 2000 14:52:17 +0000 (14:52 +0000)
committerJouni Ahto <jah@php.net>
Mon, 10 Jul 2000 14:52:17 +0000 (14:52 +0000)
win32/sendmail.c

index e27ceb3e77b202f87c3f8f9dc94994cc3c2c9cd2..11ea8033743fea01b829db5c2a55063b6de28675 100644 (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);