diff options
author | unknown <serg@serg.mylan> | 2004-05-18 09:56:45 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-05-18 09:56:45 +0200 |
commit | 30afc0b52b34a0dfff9f485a94592ee17b4552ba (patch) | |
tree | 168305427b30f43c3b4ddbc1b44d7cdc5f8d0d5f /client/mysql.cc | |
parent | 742606bafd847fac184f9d335604bfc79cbdff88 (diff) | |
download | mariadb-git-30afc0b52b34a0dfff9f485a94592ee17b4552ba.tar.gz |
after merge fix
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index cf80a5594e4..14fb1e1f917 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2406,7 +2406,7 @@ com_shell(String *buffer, char *line __attribute__((unused))) char *shell_cmd; /* Skip space from line begin */ - while (isspace(*line)) + while (my_isspace(charset_info, *line)) line++; if (!(shell_cmd = strchr(line, ' '))) { |