summaryrefslogtreecommitdiff
path: root/mysys/my_getwd.c
diff options
context:
space:
mode:
authorroot@home.(none) <>2003-03-16 12:30:10 +0400
committerroot@home.(none) <>2003-03-16 12:30:10 +0400
commit5c6c54c09afe1658e03e3c365bb5f84ff2286d37 (patch)
treedba5acdcfade3de03935aa1867550c60b1e85696 /mysys/my_getwd.c
parent1daed63ed8af3c0819e276788b4caab841804d73 (diff)
downloadmariadb-git-5c6c54c09afe1658e03e3c365bb5f84ff2286d37.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.c2
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)
{