Increase the size of the temp buffer for starttls. Some SMTP servers send larger messages.

This commit is contained in:
David Garske
2021-10-12 15:13:38 -07:00
parent f20f883e94
commit bc97539756

View File

@@ -895,7 +895,7 @@ const char* starttlsCmd[6] = {
/* Initiates the STARTTLS command sequence over TCP */
static int StartTLS_Init(SOCKET_T* sockfd)
{
char tmpBuf[256];
char tmpBuf[512];
if (sockfd == NULL)
return BAD_FUNC_ARG;