Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 90816 invoked from network); 17 Jan 2010 10:41:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Jan 2010 10:41:58 -0000 Received: (qmail 26583 invoked by uid 500); 17 Jan 2010 10:41:58 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 26512 invoked by uid 500); 17 Jan 2010 10:41:57 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 26503 invoked by uid 99); 17 Jan 2010 10:41:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jan 2010 10:41:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jan 2010 10:41:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0F03723889F1; Sun, 17 Jan 2010 10:41:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r900091 - /apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h Date: Sun, 17 Jan 2010 10:41:37 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100117104137.0F03723889F1@eris.apache.org> Author: wrowe Date: Sun Jan 17 10:41:36 2010 New Revision: 900091 URL: http://svn.apache.org/viewvc?rev=900091&view=rev Log: When adding members to an existing struct, add them to the end (backports r900089) Modified: apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h Modified: apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h?rev=900091&r1=900090&r2=900091&view=diff ============================================================================== --- apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h (original) +++ apr/apr-util/branches/1.4.x/include/private/apr_crypto_internal.h Sun Jan 17 10:41:36 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