You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2010/01/17 11:41:30 UTC

svn commit: r900090 - /apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h

Author: wrowe
Date: Sun Jan 17 10:41:30 2010
New Revision: 900090

URL: http://svn.apache.org/viewvc?rev=900090&view=rev
Log:
When adding members to an existing struct, add them to the end (backports r900089)

Modified:
    apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h

Modified: apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h?rev=900090&r1=900089&r2=900090&view=diff
==============================================================================
--- apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h (original)
+++ apr/apr-util/branches/1.5.x/include/private/apr_crypto_internal.h Sun Jan 17 10:41:30 2010
@@ -41,14 +41,6 @@
     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 @@
      */
     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