summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-01-05 17:34:24 +0400
committerunknown <bar@bar.mysql.r18.ru>2003-01-05 17:34:24 +0400
commit9cb8b57c2572718c285c251004532c132970a56d (patch)
treeba6e2655f44dcafdf0ae073f560c16335ec2f0ce /strings
parenta10b6c3a06465b3d4ddf1a8f341d0d1c91d17ec8 (diff)
downloadmariadb-git-9cb8b57c2572718c285c251004532c132970a56d.tar.gz
koi8_ru -> koi8_r
charset.conf -> charset.xml bug fix mysql-test/r/ctype_many.result: koi8_ru -> koi8_r mysql-test/t/ctype_many.test: koi8_ru -> koi8_r mysys/charset.c: charset.conf -> charset.xml sql/share/Makefile.am: charset.conf -> charset.xml strings/ctype-simple.c: 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;