mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
consistency fix - all help texts for command-line options should end with a dot.
This commit is contained in:
@ -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},
|
||||
|
Reference in New Issue
Block a user