From: Graham Leggett Date: Tue, 15 Dec 2009 00:31:39 +0000 (+0000) Subject: Correctly reference the apr_crypto_t context as a context and not a factory, X-Git-Tag: 2.3.5~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e76a4537637a847ca4ebf4cf63ccd70c16bb4e2b;p=thirdparty%2Fapache%2Fhttpd.git Correctly reference the apr_crypto_t context as a context and not a factory, using the new name apr_crypto_make. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@890581 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/session/mod_session_crypto.c b/modules/session/mod_session_crypto.c index ab7980d1dd8..f31c7786952 100644 --- a/modules/session/mod_session_crypto.c +++ b/modules/session/mod_session_crypto.c @@ -82,7 +82,7 @@ static apr_status_t crypt_init(request_rec * r, const apr_crypto_driver_t *drive } /* set up */ - res = apr_crypto_factory(driver, r->pool, dconf->params, f); + res = apr_crypto_make(driver, r->pool, dconf->params, f); if (APR_ENOTIMPL == res) { ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX "generic symmetrical encryption is not supported by this "