summaryrefslogtreecommitdiff
path: root/crypto/apr_crypto.c
diff options
context:
space:
mode:
authorminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2011-05-15 13:11:58 +0000
committerminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2011-05-15 13:11:58 +0000
commit07f9b80b9d533352d74eb11211da4b43d3fee4a3 (patch)
treee71babd149832403020276c79e8332bf345f767a /crypto/apr_crypto.c
parent3a059f1e9a0cad14328bec09ea7b701afae44cc6 (diff)
downloadlibapr-07f9b80b9d533352d74eb11211da4b43d3fee4a3.tar.gz
Remove the pool from the apr_crypto shutdown call.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1103367 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'crypto/apr_crypto.c')
-rw-r--r--crypto/apr_crypto.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/crypto/apr_crypto.c b/crypto/apr_crypto.c
index f73c4367b..1bfdbacfa 100644
--- a/crypto/apr_crypto.c
+++ b/crypto/apr_crypto.c
@@ -436,12 +436,11 @@ APR_DECLARE(apr_status_t) apr_crypto_cleanup(apr_crypto_t *f) {
* @brief Shutdown the crypto library.
* @note After shutdown, it is expected that the init function can be called again.
* @param driver - driver to use
- * @param p The pool to use.
* @return Returns APR_ENOTIMPL if not supported.
*/
-APR_DECLARE(apr_status_t) apr_crypto_shutdown(const apr_crypto_driver_t *driver,
- apr_pool_t *p) {
- return driver->shutdown(p);
+APR_DECLARE(apr_status_t) apr_crypto_shutdown(const apr_crypto_driver_t *driver)
+{
+ return driver->shutdown();
}
#endif /* APU_HAVE_CRYPTO */