mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
mysql_upgrade ignored the --basedir and --datadir arguments as it has no use
for them, but it did so silently. (Bug #36558)
This commit is contained in:
parent
00920ce29b
commit
eb1261502c
1 changed files with 5 additions and 1 deletions
|
|
@ -251,8 +251,12 @@ get_one_option(int optid, const struct my_option *opt,
|
|||
break;
|
||||
|
||||
case 'b': /* --basedir */
|
||||
case 'v': /* --verbose */
|
||||
case 'd': /* --datadir */
|
||||
fprintf(stderr, "%s: the '--%s' option is always ignored\n",
|
||||
my_progname, optid == 'b' ? "basedir" : "datadir");
|
||||
/* FALLTHROUGH */
|
||||
|
||||
case 'v': /* --verbose */
|
||||
case 'f': /* --force */
|
||||
add_option= FALSE;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue