Skip to content

Commit 55e33e6

Browse files
author
Jim Winstead
committed
Make SSL options appear in correct place in mysql_upgrade and mysqltest
usage information. (Bug #31883)
1 parent 6510c77 commit 55e33e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/mysql_upgrade.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ static struct my_option my_long_options[]=
115115
#endif
116116
{"socket", 'S', "Socket file to use for connection.",
117117
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
118+
#include <sslopt-longopts.h>
118119
{"tmpdir", 't', "Directory for temporary files",
119120
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
120121
{"user", 'u', "User for login if not current user.", (uchar**) &opt_user,
121122
(uchar**) &opt_user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
122-
#include <sslopt-longopts.h>
123123
{"verbose", 'v', "Display more output about the process",
124124
(uchar**) &opt_verbose, (uchar**) &opt_verbose, 0,
125125
GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},

client/mysqltest.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5665,11 +5665,11 @@ static struct my_option my_long_options[] =
56655665
{"sp-protocol", OPT_SP_PROTOCOL, "Use stored procedures for select",
56665666
(uchar**) &sp_protocol, (uchar**) &sp_protocol, 0,
56675667
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
5668+
#include "sslopt-longopts.h"
56685669
{"tail-lines", OPT_TAIL_LINES,
56695670
"Number of lines of the resul to include in a failure report",
56705671
(uchar**) &opt_tail_lines, (uchar**) &opt_tail_lines, 0,
56715672
GET_INT, REQUIRED_ARG, 0, 0, 10000, 0, 0, 0},
5672-
#include "sslopt-longopts.h"
56735673
{"test-file", 'x', "Read test from/in this file (default stdin).",
56745674
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
56755675
{"timer-file", 'm', "File where the timing in micro seconds is stored.",

0 commit comments

Comments
 (0)