summaryrefslogtreecommitdiff
path: root/include/private
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2010-01-17 10:40:59 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2010-01-17 10:40:59 +0000
commit52648bf704087afa2a0860823011149133e0e3a3 (patch)
treea65975d479fc93ddb09cd0f301b79a73858d5ce0 /include/private
parentbf8e3d284493283e79b7ddf139d38bb9ad021810 (diff)
downloadapr-52648bf704087afa2a0860823011149133e0e3a3.tar.gz
When adding members to an existing struct, add them to the end(!!!)
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@900089 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/private')
-rw-r--r--include/private/apr_crypto_internal.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/private/apr_crypto_internal.h b/include/private/apr_crypto_internal.h
index d253bcfaf..db71a7fca 100644
--- a/include/private/apr_crypto_internal.h
+++ b/include/private/apr_crypto_internal.h
@@ -41,14 +41,6 @@ struct apr_crypto_driver_t {
apr_status_t (*init)(apr_pool_t *pool, const apr_array_header_t *params, int *rc);
/**
- * @brief: fetch the most recent error from this driver.
- * @param f - context pointer
- * @param result - the result structure
- * @return APR_SUCCESS for success.
- */
- apr_status_t (*error)(const apr_crypto_t *f, const apu_err_t **result);
-
- /**
* @brief Create a context for supporting encryption. Keys, certificates,
* algorithms and other parameters will be set per context. More than
* one context can be created at one time. A cleanup will be automatically
@@ -250,6 +242,14 @@ struct apr_crypto_driver_t {
*/
apr_status_t (*shutdown)(apr_pool_t *p);
+ /**
+ * @brief: fetch the most recent error from this driver.
+ * @param f - context pointer
+ * @param result - the result structure
+ * @return APR_SUCCESS for success.
+ */
+ apr_status_t (*error)(const apr_crypto_t *f, const apu_err_t **result);
+
};
#endif