]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
BIO_write returns an int. Whacha gonna do? Kill the last non-ab warning.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 1 Oct 2001 16:07:17 +0000 (16:07 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 1 Oct 2001 16:07:17 +0000 (16:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@91220 13f79535-47bb-0310-9956-ffa450edef68

ssl_engine_io.c

index 564e9a783ba33ced46d0e9a8a2762a49b3715e17..52f1643c7ce267be5b817c5f71d487baf1032887 100644 (file)
@@ -259,7 +259,7 @@ static apr_status_t churn(SSLFilterRec *pRec,
 
        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
              * into a memory buffer, unless, of course, we run out of 
              * memory