From 2e57dfe03e4df802d530ae217415d50419ab4e20 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sat, 15 May 2021 14:25:27 -0600 Subject: * Eliminate no timeout from https connection. --- imap/src/c-client/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'imap/src/c-client') diff --git a/imap/src/c-client/http.c b/imap/src/c-client/http.c index 82824cc3..d073dc6c 100644 --- a/imap/src/c-client/http.c +++ b/imap/src/c-client/http.c @@ -949,7 +949,7 @@ http_open (unsigned char *url) stream->urltail = cpystr(s ? (char *) s : "/"); stream->netstream = net_open (&mb, NIL, mb.port ? mb.port : HTTPTCPPORT, (NETDRIVER *) mail_parameters (NIL,GET_SSLDRIVER,NIL), - "*https", mb.port ? mb.port : HTTPSSLPORT); + "https", mb.port ? mb.port : HTTPSSLPORT); stream->debug = http_debug; if(!stream->netstream){ http_close(stream); -- cgit v1.2.3-54-g00ecf