]> granicus.if.org Git - apache/commitdiff
Ah, I didn't see that churn is only used on input - rename the function
authorJustin Erenkrantz <jerenkrantz@apache.org>
Thu, 4 Oct 2001 17:50:39 +0000 (17:50 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Thu, 4 Oct 2001 17:50:39 +0000 (17:50 +0000)
to match churn_output.  =)

Yes, I'm slowly working on fixing mod_ssl...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91289 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_io.c

index 52f1643c7ce267be5b817c5f71d487baf1032887..ff077e8da7afa8e079b16217492c223807fc5804 100644 (file)
@@ -190,7 +190,7 @@ static apr_status_t churn_output(SSLFilterRec *ctx)
 #define bio_is_renegotiating(bio) \
 (((int)BIO_get_callback_arg(bio)) == SSL_ST_RENEGOTIATE)
 
-static apr_status_t churn(SSLFilterRec *pRec,
+static apr_status_t churn_input(SSLFilterRec *pRec,
         ap_input_mode_t eMode, apr_off_t *readbytes)
 {
     conn_rec *c = pRec->pInputFilter->c;
@@ -388,7 +388,7 @@ static apr_status_t ssl_io_filter_Input(ap_filter_t *f,
     }
 
     /* churn the state machine */
-    ret = churn(pRec, eMode, readbytes);
+    ret = churn_input(pRec, eMode, readbytes);
     if (ret != APR_SUCCESS)
        return ret;