From e76a4537637a847ca4ebf4cf63ccd70c16bb4e2b Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Tue, 15 Dec 2009 00:31:39 +0000 Subject: [PATCH] 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 --- modules/session/mod_session_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 " -- 2.47.3