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_getwd.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_getwd.c')
-rw-r--r-- | mysys/my_getwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_getwd.c b/mysys/my_getwd.c index adf131c5fd0..a08d28d8545 100644 --- a/mysys/my_getwd.c +++ b/mysys/my_getwd.c @@ -109,7 +109,7 @@ int my_setwd(const char *dir, myf MyFlags) uint drive,drives; pos++; /* Skipp FN_DEVCHAR */ - drive=(uint) (my_toupper(system_charset_info,dir[0])-'A'+1); + drive=(uint) (my_toupper(&my_charset_latin1,dir[0])-'A'+1); drives= (uint) -1; if ((pos-(byte*) dir) == 2 && drive > 0 && drive < 32) { |