mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
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
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user