1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

koi8_ru -> koi8_r

charset.conf -> charset.xml
bug fix
This commit is contained in:
bar@bar.mysql.r18.ru
2003-01-05 17:34:24 +04:00
parent 40c61f5763
commit 4e405fa200
5 changed files with 216 additions and 191 deletions

View File

@ -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;