add CHANGES entry
authorDr. Stephen Henson <steve@openssl.org>
Tue, 26 Jan 2010 19:48:10 +0000 (19:48 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 26 Jan 2010 19:48:10 +0000 (19:48 +0000)
CHANGES

diff --git a/CHANGES b/CHANGES
index 626ac57e54dfb3ac6b721c64729f2f508693942c..d87c18769743570fbd260267c465484e9ffe0342 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 
  Changes between 0.9.8l (?) and 0.9.8m (?)  [xx XXX xxxx]
 
+  *) The code that handled flusing of data in SSL/TLS originally used the
+     BIO_CTRL_INFO ctrl to see if any data was pending first. This caused
+     the problem outlined in PR#1949. The fix suggested there however can
+     trigger problems with buggy BIO_CTRL_WPENDING (e.g. some versions
+     of Apache). So instead simplify the code to flush unconditionally.
+     This should be fine since flushing with no data to flush is a no op.
+     [Steve Henson]
+
   *) Handle TLS versions 2.0 and later properly and correctly use the
      highest version of TLS/SSL supported. Although TLS >= 2.0 is some way
      off ancient servers have a habit of sticking around for a while...