We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad9d4c commit d27da38Copy full SHA for d27da38
imap-send.c
@@ -1193,13 +1193,13 @@ static struct store *imap_open_store(struct imap_server_conf *srvc)
1193
if (!preauth) {
1194
#ifndef NO_OPENSSL
1195
if (!srvc->use_ssl && CAP(STARTTLS)) {
1196
- if (imap_exec(ctx, 0, "STARTTLS") != RESP_OK)
+ if (imap_exec(ctx, NULL, "STARTTLS") != RESP_OK)
1197
goto bail;
1198
if (ssl_socket_connect(&imap->buf.sock, 1,
1199
srvc->ssl_verify))
1200
1201
/* capabilities may have changed, so get the new capabilities */
1202
- if (imap_exec(ctx, 0, "CAPABILITY") != RESP_OK)
+ if (imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
1203
1204
}
1205
#endif
0 commit comments