summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-06-13 10:59:02 +0200
committerunknown <serg@serg.mylan>2003-06-13 10:59:02 +0200
commit5810811e6a3cb9c0ffb38f4f47b86d98b283a007 (patch)
tree55ce93098a33057e76d00ed234a83d4e80818fdc /tools
parentedd9bd53f1b302e5ca540c103585a0fc3e0aeee0 (diff)
downloadmariadb-git-5810811e6a3cb9c0ffb38f4f47b86d98b283a007.tar.gz
consistency fix - all help texts for command-line options should end with a dot.
Diffstat (limited to 'tools')
-rw-r--r--tools/mysqlmanager.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c
index 20fe2178005..70382c29735 100644
--- a/tools/mysqlmanager.c
+++ b/tools/mysqlmanager.c
@@ -283,7 +283,7 @@ struct manager_cmd commands[] =
static struct my_option my_long_options[] =
{
#ifndef DBUG_OFF
- {"debug", '#', "Output debug log. Often this is 'd:t:o,filename'",
+ {"debug", '#', "Output debug log. Often this is 'd:t:o,filename'.",
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
#endif
{"help", '?', "Display this help and exit.",
@@ -299,20 +299,20 @@ static struct my_option my_long_options[] =
{"tcp-backlog", 'B', "Size of TCP/IP listen queue.",
(gptr*) &manager_back_log, (gptr*) &manager_back_log, 0, GET_INT,
REQUIRED_ARG, MANAGER_BACK_LOG, 0, 0, 0, 0, 0},
- {"greeting", 'g', "Set greeting on connect", (gptr*) &manager_greeting,
+ {"greeting", 'g', "Set greeting on connect.", (gptr*) &manager_greeting,
(gptr*) &manager_greeting, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
- {"max-command-len", 'm', "Maximum command length",
+ {"max-command-len", 'm', "Maximum command length.",
(gptr*) &manager_max_cmd_len, (gptr*) &manager_max_cmd_len, 0, GET_UINT,
REQUIRED_ARG, MANAGER_MAX_CMD_LEN, 0, 0, 0, 0, 0},
- {"one-thread", 'd', "Use one thread ( for debugging)", (gptr*) &one_thread,
+ {"one-thread", 'd', "Use one thread ( for debugging).", (gptr*) &one_thread,
(gptr*) &one_thread, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
- {"connect-retries", 'C', "Number of attempts to establish MySQL connection",
+ {"connect-retries", 'C', "Number of attempts to establish MySQL connection.",
(gptr*) &manager_connect_retries, (gptr*) &manager_connect_retries, 0,
GET_INT, REQUIRED_ARG, MANAGER_CONNECT_RETRIES, 0, 0, 0, 0, 0},
- {"password-file", 'p', "Password file for manager",
+ {"password-file", 'p', "Password file for manager.",
(gptr*) &manager_pw_file, (gptr*) &manager_pw_file, 0, GET_STR,
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
- {"pid-file", 'f', "Pid file to use", (gptr*) &pid_file, (gptr*) &pid_file,
+ {"pid-file", 'f', "Pid file to use.", (gptr*) &pid_file, (gptr*) &pid_file,
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"version", 'V', "Output version information and exit.", 0, 0, 0,
GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},