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:00 UTC

svn commit: r900089 - /apr/apr/trunk/include/private/apr_crypto_internal.h

Author: wrowe
Date: Sun Jan 17 10:40:59 2010
New Revision: 900089

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

Modified:
    apr/apr/trunk/include/private/apr_crypto_internal.h

Modified: apr/apr/trunk/include/private/apr_crypto_internal.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/private/apr_crypto_internal.h?rev=900089&r1=900088&r2=900089&view=diff
==============================================================================
--- apr/apr/trunk/include/private/apr_crypto_internal.h (original)
+++ apr/apr/trunk/include/private/apr_crypto_internal.h Sun Jan 17 10:40:59 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