diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2007-12-18 22:13:17 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2007-12-18 22:13:17 +0000 |
commit | 36970357fdc022cbb3abeffcf180f8b0dfcfce08 (patch) | |
tree | 1eba18a9ef6278600ac0659d038aa47c0fb77679 | |
parent | ff4e06f9f8e4005f1e8feb499ee8e4b4bd7d48a3 (diff) | |
download | libapr-util-36970357fdc022cbb3abeffcf180f8b0dfcfce08.tar.gz |
Fixed the implementation side, but not the unimplemented
flavors for export from apr-UTIL.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@605341 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | ssl/apr_ssl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ssl/apr_ssl.c b/ssl/apr_ssl.c index d28b9f2b..f43f2250 100644 --- a/ssl/apr_ssl.c +++ b/ssl/apr_ssl.c @@ -135,7 +135,7 @@ APU_DECLARE(apr_status_t) apr_evp_factory_create(apr_evp_factory_t **newFactory, return APR_ENOTIMPL; } -APR_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, +APU_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, apr_evp_crypt_t **e, apr_evp_crypt_type_e type, apr_evp_crypt_key_e key, @@ -144,7 +144,7 @@ APR_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, return APR_ENOTIMPL; } -APR_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, +APU_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, unsigned char **out, apr_size_t *outlen, const unsigned char *in, @@ -153,19 +153,19 @@ APR_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, return APR_ENOTIMPL; } -APR_DECLARE(apr_status_t) apr_evp_crypt_finish(apr_evp_crypt_t *evp, +APU_DECLARE(apr_status_t) apr_evp_crypt_finish(apr_evp_crypt_t *evp, unsigned char *out, apr_size_t *outlen) { return APR_ENOTIMPL; } -APR_DECLARE(apr_status_t) apr_evp_crypt_cleanup(apr_evp_crypt_t *e) +APU_DECLARE(apr_status_t) apr_evp_crypt_cleanup(apr_evp_crypt_t *e) { return APR_ENOTIMPL; } -APR_DECLARE(apr_status_t) apr_evp_factory_cleanup(apr_evp_factory_t *f) +APU_DECLARE(apr_status_t) apr_evp_factory_cleanup(apr_evp_factory_t *f) { return APR_ENOTIMPL; } |