From d18a2bcce39679662da57a18171c90fc02762fd8 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Thu, 4 Oct 2001 17:50:39 +0000 Subject: [PATCH] Ah, I didn't see that churn is only used on input - rename the function 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 52f1643c7c..ff077e8da7 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -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; -- 2.50.1