diff options
author | monty@hundin.mysql.fi <> | 2002-04-13 15:34:39 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-04-13 15:34:39 +0300 |
commit | b5a145d87290aad611c3aa71e5e9a736d467ec5a (patch) | |
tree | 6bb12842fb04d64fa854f04ec3d07da1e1f7c48b /extra/mysql_install.c | |
parent | e5866a7a316869d06677babdd45a62dfe6026db1 (diff) | |
parent | ee737d2fc2b2a1ec64e54146c986f2535314ae4e (diff) | |
download | mariadb-git-b5a145d87290aad611c3aa71e5e9a736d467ec5a.tar.gz |
merge
Diffstat (limited to 'extra/mysql_install.c')
-rw-r--r-- | extra/mysql_install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/mysql_install.c b/extra/mysql_install.c index 1fa62f35b7e..3f716dccef5 100644 --- a/extra/mysql_install.c +++ b/extra/mysql_install.c @@ -155,7 +155,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; |