summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorbar@bar.mysql.r18.ru <>2003-01-05 17:34:24 +0400
committerbar@bar.mysql.r18.ru <>2003-01-05 17:34:24 +0400
commit4e405fa200dede32477707d98be93f7e9042cdbb (patch)
treeba6e2655f44dcafdf0ae073f560c16335ec2f0ce /strings
parent40c61f57638ca856a80cca5fbe3a3c212edfb80a (diff)
downloadmariadb-git-4e405fa200dede32477707d98be93f7e9042cdbb.tar.gz
koi8_ru -> koi8_r
charset.conf -> charset.xml bug fix
Diffstat (limited to 'strings')
-rw-r--r--strings/ctype-simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-simple.c b/strings/ctype-simple.c
index fa1ece20b3e..49801478504 100644
--- a/strings/ctype-simple.c
+++ b/strings/ctype-simple.c
@@ -432,7 +432,7 @@ ulong my_strntoul_8bit(CHARSET_INFO *cs,
c -= '0';
else if (c>='A' && c<='F')
c = c - 'A' + 10;
- else if (c>='a' && c<='a')
+ else if (c>='a' && c<='f')
c = c - 'a' + 10;
else
break;