]> granicus.if.org Git - apache/commitdiff
Correctly reference the apr_crypto_t context as a context and not a factory,
authorGraham Leggett <minfrin@apache.org>
Tue, 15 Dec 2009 00:31:39 +0000 (00:31 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 15 Dec 2009 00:31:39 +0000 (00:31 +0000)
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

index ab7980d1dd81aff997d9f2fd810f72611ebe1c32..f31c7786952daf514b1c7c4d63e03d7ddbdb60e2 100644 (file)
@@ -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 "