From: Justin Erenkrantz Date: Thu, 4 Oct 2001 17:50:39 +0000 (+0000) Subject: Ah, I didn't see that churn is only used on input - rename the function X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f20f92f01674106fa0e0892c7cab73580119e47;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@91289 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_io.c b/ssl_engine_io.c index 52f1643c7ce..ff077e8da7a 100644 --- a/ssl_engine_io.c +++ b/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;