1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

BIO_write returns an int. Whacha gonna do? Kill the last non-ab warning.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91220 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-10-01 16:07:17 +00:00
parent 7c2044b3b9
commit 92c68926f4

View File

@@ -259,7 +259,7 @@ static apr_status_t churn(SSLFilterRec *pRec,
n = BIO_write (pRec->pbioRead, data, len); n = BIO_write (pRec->pbioRead, data, len);
if (n != len) { if ((apr_size_t)n != len) {
/* this should never really happen, since we're just writing /* this should never really happen, since we're just writing
* into a memory buffer, unless, of course, we run out of * into a memory buffer, unless, of course, we run out of
* memory * memory