You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2009/12/15 01:31:39 UTC

svn commit: r890581 - /httpd/httpd/trunk/modules/session/mod_session_crypto.c

Author: minfrin
Date: Tue Dec 15 00:31:39 2009
New Revision: 890581

URL: http://svn.apache.org/viewvc?rev=890581&view=rev
Log:
Correctly reference the apr_crypto_t context as a context and not a factory,
using the new name apr_crypto_make.

Modified:
    httpd/httpd/trunk/modules/session/mod_session_crypto.c

Modified: httpd/httpd/trunk/modules/session/mod_session_crypto.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/session/mod_session_crypto.c?rev=890581&r1=890580&r2=890581&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/session/mod_session_crypto.c (original)
+++ httpd/httpd/trunk/modules/session/mod_session_crypto.c Tue Dec 15 00:31:39 2009
@@ -82,7 +82,7 @@
     }
 
     /* 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 "