1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Reorganization to restore generating charset C files from conf files

This commit is contained in:
bar@bar.mysql.r18.ru
2003-01-29 15:08:09 +04:00
parent b2c97a0f60
commit 08129eea2b
17 changed files with 4139 additions and 4067 deletions

View File

@ -98,7 +98,7 @@ char *str2int(register const char *src, register int radix, long int lower,
converted value (and the scale!) as *negative* numbers,
so the sign is the opposite of what you might expect.
*/
while (my_isspace(system_charset_info,*src)) src++;
while (my_isspace(my_charset_latin1,*src)) src++;
sign = -1;
if (*src == '+') src++; else
if (*src == '-') src++, sign = 1;