summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-06-28 02:46:02 -0600
committerEduardo Chappa <chappa@washington.edu>2020-06-28 02:46:02 -0600
commit184498a593cdd82cf387ef4dcc0e1ad4119bfe88 (patch)
tree4e64df5dfc868715b7c13f0626bd31bd695b26bb
parent58de0f58504432bddc4a340cf3d06abc65d1022e (diff)
downloadalpine-184498a593cdd82cf387ef4dcc0e1ad4119bfe88.tar.xz
* Corrections and improvements to the documentation by Dennis Davis.
* Change flags from ) and to to BIO_NOCLOSE and BIO_CLOSE to improve readability.
-rw-r--r--pith/pine.hlp10
-rw-r--r--pith/smime.c4
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;