diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-03-19 12:37:34 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-03-19 12:37:34 +0400 |
commit | 8c7789c313cdd18d06e6659dbb850900c597c040 (patch) | |
tree | 6ff0b773fc2248925d81b193b0c7211c1bbece7b /client | |
parent | af016f72b90163d1a5e2d9d3368cc6d7f9f2394c (diff) | |
download | mariadb-git-8c7789c313cdd18d06e6659dbb850900c597c040.tar.gz |
Bug#41268 Help Text for \c is misleading in client command line interface
fixed help message
client/mysql.cc:
fixed help message
Diffstat (limited to 'client')
-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 0a4587d1c92..a2857620647 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -1199,7 +1199,7 @@ int main(int argc,char *argv[]) #endif sprintf(buff, "%s", #ifndef NOT_YET - "Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"); + "Type 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n"); #else "Type 'help [[%]function name[%]]' to get help on usage of function.\n"); #endif |