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