diff options
author | unknown <root@home.(none)> | 2003-03-16 12:30:10 +0400 |
---|---|---|
committer | unknown <root@home.(none)> | 2003-03-16 12:30:10 +0400 |
commit | 23f252855e5dcb18ac55cf9ce303f61c28e06421 (patch) | |
tree | dba5acdcfade3de03935aa1867550c60b1e85696 /mysys/my_init.c | |
parent | 2aa9f207358c2c82c63e4e5ac6f952dbf6aeddec (diff) | |
download | mariadb-git-23f252855e5dcb18ac55cf9ce303f61c28e06421.tar.gz |
system_charset_info has been moved to /sql directory
and isn't used in libraries any longer
Diffstat (limited to 'mysys/my_init.c')
-rw-r--r-- | mysys/my_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_init.c b/mysys/my_init.c index ec7cae46d53..fa1beaa3e35 100644 --- a/mysys/my_init.c +++ b/mysys/my_init.c @@ -52,7 +52,7 @@ my_bool my_init_done=0; static ulong atoi_octal(const char *str) { long int tmp; - while (*str && my_isspace(system_charset_info, *str)) + while (*str && my_isspace(&my_charset_latin1, *str)) str++; str2int(str, (*str == '0' ? 8 : 10), /* Octalt or decimalt */ |