summaryrefslogtreecommitdiff
path: root/include/apr_xml.h
diff options
context:
space:
mode:
authorminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2011-12-06 01:08:40 +0000
committerminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2011-12-06 01:08:40 +0000
commitaca4351e2f768674a4a6928e634406e7385226d9 (patch)
tree45ba98a0f5e105e8c62181d11c7f5497c422972a /include/apr_xml.h
parentc83b477521ed2aaf40c6a47d540c665ca9bd539c (diff)
parent796db2a03ab94945939e0e91c269a611463d43a8 (diff)
downloadlibapr-util-1.4.0.tar.gz
Tag v1.4.0.1.4.0
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/tags/1.4.0@1210733 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_xml.h')
-rw-r--r--include/apr_xml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_xml.h b/include/apr_xml.h
index 829f0fd2..ac7f003b 100644
--- a/include/apr_xml.h
+++ b/include/apr_xml.h
@@ -304,10 +304,10 @@ APU_DECLARE(const char *) apr_xml_empty_elem(apr_pool_t *p,
/**
* quote an XML string
- * Replace '<', '>', and '&' with '&lt;', '&gt;', and '&amp;'.
+ * Replace '\<', '\>', and '\&' with '\&lt;', '\&gt;', and '\&amp;'.
* @param p The pool to allocate out of
* @param s The string to quote
- * @param quotes If quotes is true, then replace '"' with '&quot;'.
+ * @param quotes If quotes is true, then replace '&quot;' with '\&quot;'.
* @return The quoted string
* @note If the string does not contain special characters, it is not
* duplicated into the pool and the original string is returned.