You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2013/10/21 02:01:25 UTC

svn commit: r1534013 - /apr/apr/branches/1.5.x/include/apr_escape.h

Author: trawick
Date: Mon Oct 21 00:01:25 2013
New Revision: 1534013

URL: http://svn.apache.org/r1534013
Log:
merge the apr_escape.h portion of trunk r1496407 (apr_escape.h wasn't in 1.5.x branch previously

Modified:
    apr/apr/branches/1.5.x/include/apr_escape.h

Modified: apr/apr/branches/1.5.x/include/apr_escape.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/include/apr_escape.h?rev=1534013&r1=1534012&r2=1534013&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/include/apr_escape.h (original)
+++ apr/apr/branches/1.5.x/include/apr_escape.h Mon Oct 21 00:01:25 2013
@@ -130,7 +130,7 @@ APR_DECLARE(apr_status_t) apr_escape_pat
  * Escape a path segment, as defined in RFC1808, returning the result from a
  * pool.
  * @param p Pool to allocate from
- * @param url String to be escaped
+ * @param str String to be escaped
  * @return A string allocated from the pool on success, the original string
  * if no characters are encoded or the string is NULL.
  */
@@ -149,7 +149,7 @@ APR_DECLARE(const char *) apr_pescape_pa
  * something with a '/' in it (and thus does not prefix "./").
  * @param escaped Optional buffer to write the encoded string, can be
  * NULL
- * @param str The original string
+ * @param path The original string
  * @param slen The length of the original string, or APR_ESCAPE_STRING
  * @param partial If non zero, suppresses the prepending of "./"
  * @param len If present, returns the length of the string
@@ -199,7 +199,7 @@ APR_DECLARE(apr_status_t) apr_escape_url
  * http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1, returning
  * the result from a pool.
  * @param p Pool to allocate from
- * @param url String to be escaped
+ * @param str String to be escaped
  * @return A string allocated from the pool on success, the original string
  * if no characters are encoded or if the string was NULL.
  */
@@ -318,7 +318,7 @@ APR_DECLARE(const char *) apr_pescape_ec
  * Convert binary data to a hex encoding.
  * @param dest The destination buffer, can be NULL
  * @param src The original buffer
- * @param slen The length of the original buffer
+ * @param srclen The length of the original buffer
  * @param colon If not zero, insert colon characters between hex digits.
  * @param len If present, returns the length of the string
  * @return APR_SUCCESS, or APR_NOTFOUND if the string was NULL
@@ -331,7 +331,7 @@ APR_DECLARE(apr_status_t) apr_escape_hex
  * pool.
  * @param p Pool to allocate from
  * @param src The original buffer
- * @param srclen The length of the original buffer
+ * @param slen The length of the original buffer
  * @param colon If not zero, insert colon characters between hex digits.
  * @return A zero padded buffer allocated from the pool on success, or
  * NULL if src was NULL.