mirror of
https://github.com/curl/curl.git
synced 2026-08-26 16:53:32 +03:00
tidy-up: apply clang-format fixes
To lib, vtls/vauth, vtls/vquic, lib/vtls.
Also:
- unit3400: drop redundant `(void)arg`.
Follow-up to e78b1b3ecc #21153
- fix comment typos.
Closes #21786
This commit is contained in:
parent
cdb266738b
commit
59320082b0
50 changed files with 263 additions and 289 deletions
14
lib/imap.c
14
lib/imap.c
|
|
@ -910,12 +910,12 @@ static CURLcode imap_perform_append(struct Curl_easy *data,
|
|||
if(data->set.upload_flags) {
|
||||
int i;
|
||||
struct ulbits ulflag[] = {
|
||||
{CURLULFLAG_ANSWERED, "Answered"},
|
||||
{CURLULFLAG_DELETED, "Deleted"},
|
||||
{CURLULFLAG_DRAFT, "Draft"},
|
||||
{CURLULFLAG_FLAGGED, "Flagged"},
|
||||
{CURLULFLAG_SEEN, "Seen"},
|
||||
{0, NULL}
|
||||
{ CURLULFLAG_ANSWERED, "Answered" },
|
||||
{ CURLULFLAG_DELETED, "Deleted" },
|
||||
{ CURLULFLAG_DRAFT, "Draft" },
|
||||
{ CURLULFLAG_FLAGGED, "Flagged" },
|
||||
{ CURLULFLAG_SEEN, "Seen" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
|
|
@ -1043,7 +1043,7 @@ static CURLcode imap_state_capability_resp(struct Curl_easy *data,
|
|||
|
||||
/* Extract the word */
|
||||
for(wordlen = 0; line[wordlen] && !ISBLANK(line[wordlen]) &&
|
||||
!ISNEWLINE(line[wordlen]);)
|
||||
!ISNEWLINE(line[wordlen]);)
|
||||
wordlen++;
|
||||
|
||||
/* Does the server support the STARTTLS capability? */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue