From c5698766d4c4f64c44ca4ab8341967389393d35d Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Tue, 20 Aug 2019 20:35:59 -0600 Subject: * Improve code that determines the type of encryption that is used according to user's request. --- imap/src/c-client/mail.c | 8 ++++---- pith/pine.hlp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/imap/src/c-client/mail.c b/imap/src/c-client/mail.c index 49444eb..7291a64 100644 --- a/imap/src/c-client/mail.c +++ b/imap/src/c-client/mail.c @@ -6240,10 +6240,10 @@ NETSTREAM *net_open (NETMBX *mb,NETDRIVER *dv,unsigned long port, NETSTREAM *stream = NIL; char tmp[MAILTMPLEN]; unsigned long flags = mb->novalidate ? NET_NOVALIDATECERT : 0; - flags |= mb->tls1 || mb->tlsflag ? NET_TRYTLS1 : 0; - flags |= mb->tls1_1 ? NET_TRYTLS1_1 : 0; - flags |= mb->tls1_2 ? NET_TRYTLS1_2 : 0; - flags |= mb->tls1_3 ? NET_TRYTLS1_3 : 0; + flags |= mb->tls1 ? NET_TRYTLS1 + : mb->tls1_1 ? NET_TRYTLS1_1 + : mb->tls1_2 ? NET_TRYTLS1_2 + : mb->tls1_3 ? NET_TRYTLS1_3 : 0; if (strlen (mb->host) >= NETMAXHOST) { sprintf (tmp,"Invalid host name: %.80s",mb->host); MM_LOG (tmp,ERROR); diff --git a/pith/pine.hlp b/pith/pine.hlp index 50dcf01..d3e390d 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 363 2019-08-09 16:00:40 +Alpine Commit 364 2019-08-20 20:35:47 ============= h_news ================= -- cgit v1.2.3-54-g00ecf