summaryrefslogtreecommitdiff
path: root/src/charset/detect.c
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-11 02:57:54 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-11 02:57:54 +0000
commit75b2ff1216892032277367725c2be0b037cbc257 (patch)
treeda0828cdfc0ca4e04ac091605896fa99607d6bf2 /src/charset/detect.c
parente77edf053af3932acc370d66716ad3a41e96dda5 (diff)
downloadlibhubbub-75b2ff1216892032277367725c2be0b037cbc257.tar.gz
libhubbub-75b2ff1216892032277367725c2be0b037cbc257.tar.bz2
- Remove an unused function from utils/string.c
- Remove the no-op FINISH() macro from the tokeniser - Fix a typo in the charset detector svn path=/trunk/hubbub/; revision=5007
Diffstat (limited to 'src/charset/detect.c')
-rw-r--r--src/charset/detect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset/detect.c b/src/charset/detect.c
index f3f2e4f..755d9fd 100644
--- a/src/charset/detect.c
+++ b/src/charset/detect.c
@@ -676,14 +676,14 @@ void hubbub_charset_fix_charset(uint16_t *charset)
} else if (*charset == parserutils_charset_mibenum_from_name(
"KS_C_5601-1987", SLEN("KS_C_5601-1987")) ||
*charset == parserutils_charset_mibenum_from_name(
- "EUC-KR", SLEN("EUR-KR"))) {
+ "EUC-KR", SLEN("EUC-KR"))) {
tmp = parserutils_charset_mibenum_from_name(
"Windows-949", SLEN("Windows-949"));
/* TIS-620 -> Windows-874 */
} else if (*charset == parserutils_charset_mibenum_from_name(
"TIS-620", SLEN("TIS-620"))) {
tmp = parserutils_charset_mibenum_from_name(
- "Windows-847", SLEN("Windows-847"));
+ "Windows-874", SLEN("Windows-874"));
/* x-x-big5 -> Big5 */
} else if (*charset == parserutils_charset_mibenum_from_name(
"x-x-big5", SLEN("x-x-big5"))) {