Merge pull request #4467 from dgarske/smtp

Example client: fix for SMTP temp buffer size
This commit is contained in:
Sean Parkinson
2021-10-14 08:16:42 +10:00
committed by GitHub

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;