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 2007/10/28 18:49:43 UTC

svn commit: r589387 - /apr/apr-util/branches/1.2.x/include/apr_base64.h

Author: wrowe
Date: Sun Oct 28 10:49:42 2007
New Revision: 589387

URL: http://svn.apache.org/viewvc?rev=589387&view=rev
Log:
Correct apr_base64_decode_len() docs.

Backports: 589386
PR: 43448
Submitted by: Brian Rectanus <Brian.Rectanus breach.com>


Modified:
    apr/apr-util/branches/1.2.x/include/apr_base64.h

Modified: apr/apr-util/branches/1.2.x/include/apr_base64.h
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/include/apr_base64.h?rev=589387&r1=589386&r2=589387&view=diff
==============================================================================
--- apr/apr-util/branches/1.2.x/include/apr_base64.h (original)
+++ apr/apr-util/branches/1.2.x/include/apr_base64.h Sun Oct 28 10:49:42 2007
@@ -80,9 +80,10 @@
                                         int len_plain_src);
 
 /**
- * Determine the length of a plain text string given the encoded version
+ * Determine the maximum buffer length required to decode the plain text
+ * string given the encoded string.
  * @param coded_src The encoded string
- * @return the length of the plain text string
+ * @return the maximum required buffer length for the plain text string
  */ 
 APU_DECLARE(int) apr_base64_decode_len(const char * coded_src);