diff options
author | Otto Kekäläinen <otto@kekalainen.net> | 2020-12-20 21:07:38 +0200 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2021-03-22 18:10:39 +1100 |
commit | cebf9ee2040195a61fbed32d06cc2e335e9f8dfd (patch) | |
tree | 99068da2237fbb33ad57ab920e70332b3832b565 /sql-common | |
parent | e7ddf46632db84f55af85cd4f401d59c6ab29242 (diff) | |
download | mariadb-git-cebf9ee2040195a61fbed32d06cc2e335e9f8dfd.tar.gz |
Fix various spelling errors still found in code
Reseting -> Resetting
Unknow -> Unknown
capabilites -> capabilities
choosen -> chosen
direcory -> directory
informations -> information
openned -> opened
refered -> referred
to access -> one to access
missmatch -> mismatch
succesfully -> successfully
dont -> don't
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 0de1d8c1208..f314c03944b 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -2772,7 +2772,7 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, VIO_LOCALHOST | VIO_BUFFERED_READ); if (!net->vio) { - DBUG_PRINT("error",("Unknow protocol %d ", mysql->options.protocol)); + DBUG_PRINT("error",("Unknown protocol %d ", mysql->options.protocol)); set_mysql_error(mysql, CR_CONN_UNKNOW_PROTOCOL, unknown_sqlstate); closesocket(sock); goto error; @@ -2947,7 +2947,7 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, DBUG_PRINT("info", ("net->vio: %p", net->vio)); if (!net->vio) { - DBUG_PRINT("error",("Unknow protocol %d ",mysql->options.protocol)); + DBUG_PRINT("error",("Unknown protocol %d ",mysql->options.protocol)); set_mysql_error(mysql, CR_CONN_UNKNOW_PROTOCOL, unknown_sqlstate); goto error; } |