diff options
-rw-r--r-- | pith/pine.hlp | 10 | ||||
-rw-r--r-- | pith/smime.c | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/pith/pine.hlp b/pith/pine.hlp index 0faddf0f..61573ce2 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 463 2020-06-27 21:10:32 +Alpine Commit 464 2020-06-28 02:45:58 ============= h_news ================= <HTML> <HEAD> @@ -208,16 +208,16 @@ Bugs addressed: <LI> When Alpine starts a PREAUTH connection, it might still ask the user to login. Reported by Frank Tobin. -<UL> Invalid signatures created by Alpine, when built with recent +<LI> Invalid signatures created by Alpine, when built with recent releases of the Openssl-1.1.1 series (but not in the Openssl-1.0.1 series). Fix contributed by Bernd Edlinger. </UL> <P> -Version 2.23 has new additions and addresses bugs found in previous releases and has several -additions as well. +Version 2.23 has new additions and addresses bugs found in previous releases. -<P> Additions include: +<P> +Additions include: <UL> <LI> Implementation of XOAUTH2 authentication support for Outlook. diff --git a/pith/smime.c b/pith/smime.c index a2a6a112..795be7f1 100644 --- a/pith/smime.c +++ b/pith/smime.c @@ -2493,9 +2493,9 @@ body_to_bio(BODY *body) signatures. Fix contributed by Bernd Edlinger. */ BIO_get_mem_ptr(bio, &biobuf); - BIO_set_close(bio, 0); + BIO_set_close(bio, BIO_NOCLOSE); BUF_MEM_grow(biobuf, len-2); /* remove CRLF */ - BIO_set_mem_buf(bio, biobuf, 1); + BIO_set_mem_buf(bio, biobuf, BIO_CLOSE); } return bio; |