1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00
Fix for typos in system_charset_info
This commit is contained in:
bar@gw.udmsearch.izhnet.ru
2002-06-10 16:17:49 +05:00
parent 9e77c6d8e7
commit 16ccc1923a

View File

@@ -124,7 +124,7 @@ function (const char *nptr,char **endptr,int base)
{
if (*s == '0')
{
if (my_toupper (system_charset_into, s[1]) == 'X')
if (my_toupper (system_charset_info, s[1]) == 'X')
{
s += 2;
base = 16;
@@ -149,7 +149,7 @@ function (const char *nptr,char **endptr,int base)
if (my_isdigit (system_charset_info, c))
c -= '0';
else if (my_isalpha (system_charset_info, c))
c = my_toupper (system_charset_into, c) - 'A' + 10;
c = my_toupper (system_charset_info, c) - 'A' + 10;
else
break;
if (c >= base)