diff options
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; } |