From 43f100ad4b599dbc564f9920e63afdc242f0a27c Mon Sep 17 00:00:00 2001 From: dartraiden Date: Wed, 26 May 2021 22:25:25 +0300 Subject: libcurl: update to 7.77 --- libs/libcurl/src/imap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libs/libcurl/src/imap.c') diff --git a/libs/libcurl/src/imap.c b/libs/libcurl/src/imap.c index e887357e1c..d85bcc391d 100644 --- a/libs/libcurl/src/imap.c +++ b/libs/libcurl/src/imap.c @@ -136,6 +136,7 @@ const struct Curl_handler Curl_handler_imap = { imap_disconnect, /* disconnect */ ZERO_NULL, /* readwrite */ ZERO_NULL, /* connection_check */ + ZERO_NULL, /* attach connection */ PORT_IMAP, /* defport */ CURLPROTO_IMAP, /* protocol */ CURLPROTO_IMAP, /* family */ @@ -164,6 +165,7 @@ const struct Curl_handler Curl_handler_imaps = { imap_disconnect, /* disconnect */ ZERO_NULL, /* readwrite */ ZERO_NULL, /* connection_check */ + ZERO_NULL, /* attach connection */ PORT_IMAPS, /* defport */ CURLPROTO_IMAPS, /* protocol */ CURLPROTO_IMAP, /* family */ @@ -919,7 +921,7 @@ static CURLcode imap_state_capability_resp(struct Curl_easy *data, /* Do we have a SASL based authentication mechanism? */ else if(wordlen > 5 && !memcmp(line, "AUTH=", 5)) { size_t llen; - unsigned int mechbit; + unsigned short mechbit; line += 5; wordlen -= 5; -- cgit v1.2.3