From: Stefan Fritsch Date: Wed, 22 Jun 2011 20:16:43 +0000 (+0000) Subject: Fix build with recent apr_crypto API change X-Git-Tag: 2.3.13~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abb02e83c2c941e1be01cb2d67616f622806b336;p=thirdparty%2Fapache%2Fhttpd.git Fix build with recent apr_crypto API change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1138611 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/session/mod_session_crypto.c b/modules/session/mod_session_crypto.c index 8363f76b67e..6d3b14b2941 100644 --- a/modules/session/mod_session_crypto.c +++ b/modules/session/mod_session_crypto.c @@ -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");