Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7A42FEA84 for ; Sat, 22 Dec 2012 22:24:32 +0000 (UTC) Received: (qmail 64182 invoked by uid 500); 22 Dec 2012 22:24:31 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 64122 invoked by uid 500); 22 Dec 2012 22:24:31 -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 64114 invoked by uid 99); 22 Dec 2012 22:24:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Dec 2012 22:24:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Sat, 22 Dec 2012 22:24:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E91B42388980; Sat, 22 Dec 2012 22:24:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1425359 - in /apr/apr-util/branches/1.5.x: ./ include/apr_base64.h Date: Sat, 22 Dec 2012 22:24:09 -0000 To: commits@apr.apache.org From: sf@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121222222409.E91B42388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sf Date: Sat Dec 22 22:24:09 2012 New Revision: 1425359 URL: http://svn.apache.org/viewvc?rev=1425359&view=rev Log: doc fix Modified: apr/apr-util/branches/1.5.x/ (props changed) apr/apr-util/branches/1.5.x/include/apr_base64.h Propchange: apr/apr-util/branches/1.5.x/ ------------------------------------------------------------------------------ Merged /apr/apr/trunk:r1425356 Modified: apr/apr-util/branches/1.5.x/include/apr_base64.h URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/include/apr_base64.h?rev=1425359&r1=1425358&r2=1425359&view=diff ============================================================================== --- apr/apr-util/branches/1.5.x/include/apr_base64.h (original) +++ apr/apr-util/branches/1.5.x/include/apr_base64.h Sat Dec 22 22:24:09 2012 @@ -51,10 +51,11 @@ extern "C" { */ /** - * Given the length of an un-encrypted string, get the length of the - * encrypted string. - * @param len the length of an unencrypted string. - * @return the length of the string after it is encrypted + * Given the length of an un-encoded string, get the length of the + * encoded string. + * @param len the length of an unencoded string. + * @return the length of the string after it is encoded, including the + * trailing \0 */ APU_DECLARE(int) apr_base64_encode_len(int len);