]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix build with recent apr_crypto API change
authorStefan Fritsch <sf@apache.org>
Wed, 22 Jun 2011 20:16:43 +0000 (20:16 +0000)
committerStefan Fritsch <sf@apache.org>
Wed, 22 Jun 2011 20:16:43 +0000 (20:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1138611 13f79535-47bb-0310-9956-ffa450edef68

modules/session/mod_session_crypto.c

index 8363f76b67efae9c0b434374ca63264ecb699faa..6d3b14b2941fff59247c9941b310f9341b8ca81f 100644 (file)
@@ -369,7 +369,7 @@ AP_DECLARE(int) ap_session_crypto_init(apr_pool_t *p, apr_pool_t *plog,
         const apu_err_t *err = NULL;
         apr_status_t rv;
 
-        rv = apr_crypto_init(p, NULL);
+        rv = apr_crypto_init(p);
         if (APR_SUCCESS != rv) {
             ap_log_error(APLOG_MARK, APLOG_ERR, rv, s, LOG_PREFIX
                     "APR crypto could not be initialised");