diff options
author | Eduardo Chappa <chappa@washington.edu> | 2021-05-15 14:25:27 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2021-05-15 14:25:27 -0600 |
commit | 2e57dfe03e4df802d530ae217415d50419ab4e20 (patch) | |
tree | 8fe81ab5e603f663cd336a670f88837bc8e4708c /imap | |
parent | 7b4a6b7942db179bd4b152a3f3495f480d84db5d (diff) | |
download | alpine-2e57dfe03e4df802d530ae217415d50419ab4e20.tar.xz |
* Eliminate no timeout from https connection.
Diffstat (limited to 'imap')
-rw-r--r-- | imap/src/c-client/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |