summaryrefslogtreecommitdiff
path: root/extra/mysql_install.c
diff options
context:
space:
mode:
Diffstat (limited to 'extra/mysql_install.c')
-rw-r--r--extra/mysql_install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/mysql_install.c b/extra/mysql_install.c
index e2783f906b9..3f3da8cfb51 100644
--- a/extra/mysql_install.c
+++ b/extra/mysql_install.c
@@ -157,7 +157,7 @@ static int get_answer(QUESTION_WIDGET* w)
char c;
if (!fgets(buf,sizeof(buf),w->in))
die("Failed fgets on input stream");
- switch ((c=tolower(*buf)))
+ switch ((c=my_tolower(system_charset_info,*buf)))
{
case '\n':
return w->default_ind;