diff options
author | Aron Xu <aron@debian.org> | 2013-06-09 00:17:44 +0800 |
---|---|---|
committer | Aron Xu <aron@debian.org> | 2013-06-09 00:17:44 +0800 |
commit | 2c8fe012ef1ff6e0613480dd182dec099aa9636e (patch) | |
tree | f220f4e6733d3204aef57831a8dee2dd8551ed40 /testlimits.c | |
parent | 3c845c4be476dc0ecb93388de9cfedb3f611e6a8 (diff) | |
download | libxml2-2c8fe012ef1ff6e0613480dd182dec099aa9636e.tar.gz |
Imported Upstream version 2.9.1upstream/2.9.1
Diffstat (limited to 'testlimits.c')
-rw-r--r-- | testlimits.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testlimits.c b/testlimits.c index 7ee6fb9..41994c4 100644 --- a/testlimits.c +++ b/testlimits.c @@ -1384,19 +1384,19 @@ struct limitDesc { }; static limitDesc limitDescriptions[] = { - /* max lenght of a text node in content */ + /* max length of a text node in content */ {"huge:textNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0}, {"huge:textNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1}, {"huge:textNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0}, - /* max lenght of a text node in content */ + /* max length of a text node in content */ {"huge:attrNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0}, {"huge:attrNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1}, {"huge:attrNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0}, - /* max lenght of a comment node */ + /* max length of a comment node */ {"huge:commentNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0}, {"huge:commentNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1}, {"huge:commentNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0}, - /* max lenght of a PI node */ + /* max length of a PI node */ {"huge:piNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0}, {"huge:piNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1}, {"huge:piNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0}, |