You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2011/12/07 10:40:41 UTC

svn commit: r1211351 - /httpd/httpd/trunk/include/util_varbuf.h

Author: jorton
Date: Wed Dec  7 09:40:41 2011
New Revision: 1211351

URL: http://svn.apache.org/viewvc?rev=1211351&view=rev
Log:
* include/util_varbuf.h: Doxygen tweaks.

Modified:
    httpd/httpd/trunk/include/util_varbuf.h

Modified: httpd/httpd/trunk/include/util_varbuf.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/util_varbuf.h?rev=1211351&r1=1211350&r2=1211351&view=diff
==============================================================================
--- httpd/httpd/trunk/include/util_varbuf.h (original)
+++ httpd/httpd/trunk/include/util_varbuf.h Wed Dec  7 09:40:41 2011
@@ -62,7 +62,7 @@ struct ap_varbuf {
  * @param pool the pool to allocate small buffers from and to register the
  *        cleanup with
  * @param vb pointer to the ap_varbuf struct
- * @init_size the initial size of the buffer (see ap_varbuf_grow() for details)
+ * @param init_size the initial size of the buffer (see ap_varbuf_grow() for details)
  */
 AP_DECLARE(void) ap_varbuf_init(apr_pool_t *pool, struct ap_varbuf *vb,
                                 apr_size_t init_size);
@@ -130,6 +130,7 @@ AP_DECLARE(char *) ap_varbuf_pdup(apr_po
 /** Perform string substitutions based on regexp match, using an ap_varbuf.
  * This function behaves like ap_pregsub(), but appends to an ap_varbuf
  * instead of allocating the result from a pool.
+ * @param vb The ap_varbuf to which the string will be appended
  * @param input An arbitrary string containing $1 through $9.  These are
  *              replaced with the corresponding matched sub-expressions
  * @param source The string that was originally matched to the regex