Small fix to stop an infinite loop in the SMTP client.

This commit is contained in:
alexhudson
2008-10-10 09:31:22 +00:00
parent 90e8a95b6a
commit 8ff06fd1c4
+2 -1
View File
@@ -174,7 +174,8 @@ CheckResponse(const char *Response) {
BOOL
DeliverMessage(SMTPClient *Queue, SMTPClient *Remote, RecipStruct *Recip) {
int Extensions;
unsigned long Size=0, MessageLength=0, MessageLineLen=0;
unsigned long Size=0, MessageLineLen=0;
long long MessageLength = 0;
int Ret;
unsigned char TimeBuf[80];
char *MessageLine=NULL;