Changeset 1049
- Timestamp:
- 07/12/07 13:24:01 (1 year ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.183 (modified) (1 diff)
- 1.8.3/branches/devel/src/bsd.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.183
r1048 r1049 23 23 Fixes: 24 24 * decode64() does better validation of its input. 25 * Win32 compile fixes by Intrevis. 25 * Various compile fixes reported by Interevis and Kimiko. 26 Win32 patched by Intrevis. 26 27 27 28 Version 1.8.3 patchlevel 4 July 9, 2007 1.8.3/branches/devel/src/bsd.c
r1048 r1049 1596 1596 for (qp = &d->output.head; ((cur = *qp) != NULL);) { 1597 1597 #ifdef HAVE_WRITEV 1598 if (cur->nxt && !d->ssl) { 1598 if (cur->nxt 1599 #ifdef HAVE_SSL 1600 && !d->ssl 1601 #endif 1602 ) { 1599 1603 /* If there's more than one pending block, try to send up to 10 1600 1604 at once with writev(). Doesn't work for SSL connections, and
