Commit aecb6fe0 authored by unknown's avatar unknown

strto.c:

  Fix for typos in system_charset_info


strings/strto.c:
  Fix for typos in system_charset_info
parent 454712d2
...@@ -124,7 +124,7 @@ function (const char *nptr,char **endptr,int base) ...@@ -124,7 +124,7 @@ function (const char *nptr,char **endptr,int base)
{ {
if (*s == '0') if (*s == '0')
{ {
if (my_toupper (system_charset_into, s[1]) == 'X') if (my_toupper (system_charset_info, s[1]) == 'X')
{ {
s += 2; s += 2;
base = 16; base = 16;
...@@ -149,7 +149,7 @@ function (const char *nptr,char **endptr,int base) ...@@ -149,7 +149,7 @@ function (const char *nptr,char **endptr,int base)
if (my_isdigit (system_charset_info, c)) if (my_isdigit (system_charset_info, c))
c -= '0'; c -= '0';
else if (my_isalpha (system_charset_info, c)) 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 else
break; break;
if (c >= base) if (c >= base)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment