aboutsummaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2014-07-26 20:29:36 +0800
committerDaniel Veillard <veillard@redhat.com>2014-07-26 20:29:36 +0800
commit2f9b126a5c39bc7ba14384d4f79479ba05c81239 (patch)
tree46f75c7ef8bf65592940e955be6751c6a2629bb4 /parser.c
parent4ba5d3176938d3435ddc7347cdc904658e2999ee (diff)
downloadandroid_external_libxml2-2f9b126a5c39bc7ba14384d4f79479ba05c81239.tar.gz
android_external_libxml2-2f9b126a5c39bc7ba14384d4f79479ba05c81239.tar.bz2
android_external_libxml2-2f9b126a5c39bc7ba14384d4f79479ba05c81239.zip
typo in error messages "colon are forbidden from..."
For https://bugzilla.gnome.org/show_bug.cgi?id=731511 Pointed byt vincent Lefevre
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.c b/parser.c
index ba757eb1..46fb1e77 100644
--- a/parser.c
+++ b/parser.c
@@ -5099,7 +5099,7 @@ xmlParsePITarget(xmlParserCtxtPtr ctxt) {
}
if ((name != NULL) && (xmlStrchr(name, ':') != NULL)) {
xmlNsErr(ctxt, XML_NS_ERR_COLON,
- "colon are forbidden from PI names '%s'\n", name, NULL, NULL);
+ "colons are forbidden from PI names '%s'\n", name, NULL, NULL);
}
return(name);
}
@@ -5368,7 +5368,7 @@ xmlParseNotationDecl(xmlParserCtxtPtr ctxt) {
}
if (xmlStrchr(name, ':') != NULL) {
xmlNsErr(ctxt, XML_NS_ERR_COLON,
- "colon are forbidden from notation names '%s'\n",
+ "colons are forbidden from notation names '%s'\n",
name, NULL, NULL);
}
SKIP_BLANKS;
@@ -5457,7 +5457,7 @@ xmlParseEntityDecl(xmlParserCtxtPtr ctxt) {
}
if (xmlStrchr(name, ':') != NULL) {
xmlNsErr(ctxt, XML_NS_ERR_COLON,
- "colon are forbidden from entities names '%s'\n",
+ "colons are forbidden from entities names '%s'\n",
name, NULL, NULL);
}
skipped = SKIP_BLANKS;