summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <daniel@mariadb.org>2020-09-12 09:27:46 +1000
committerDaniel Black <daniel@mariadb.org>2020-09-12 09:37:40 +1000
commit269f9c948c5f6bd0bdf8382d5c2ae266a02149e6 (patch)
treee901bc6a1b9b8299d9b7d81462319fe93f602f74
parentc3a3b4596c9e1c922afb00b4222c6496535f0f40 (diff)
downloadmariadb-git-269f9c948c5f6bd0bdf8382d5c2ae266a02149e6.tar.gz
mysql_upgrade: fix error text
-rw-r--r--client/mysql_upgrade.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql_upgrade.c b/client/mysql_upgrade.c
index d18dc97c9b8..9cc12c8d7e7 100644
--- a/client/mysql_upgrade.c
+++ b/client/mysql_upgrade.c
@@ -1108,7 +1108,7 @@ static int check_version_match(void)
extract_variable_from_show(&ds_version, version_str))
{
print_error("Version check failed. Got the following error when calling "
- "the 'mysql' command line client", &ds_version);
+ "the 'mysql_upgrade' command line client", &ds_version);
dynstr_free(&ds_version);
return 1; /* Query failed */
}