1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix typo in output string: inital -> initial

This commit is contained in:
Otto Kekäläinen
2020-03-04 18:18:36 +02:00
parent 6a0c8ff2e5
commit c0d5d7d15b
3 changed files with 4 additions and 4 deletions

View File

@@ -1396,7 +1396,7 @@ MYSQL *mthd_my_real_connect(MYSQL *mysql, const char *host, const char *user,
{
my_set_error(mysql, CR_SERVER_LOST, SQLSTATE_UNKNOWN,
ER(CR_SERVER_LOST_EXTENDED),
"handshake: waiting for inital communication packet",
"handshake: waiting for initial communication packet",
errno);
goto error;
}
@@ -1406,7 +1406,7 @@ MYSQL *mthd_my_real_connect(MYSQL *mysql, const char *host, const char *user,
if (mysql->net.last_errno == CR_SERVER_LOST)
my_set_error(mysql, CR_SERVER_LOST, SQLSTATE_UNKNOWN,
ER(CR_SERVER_LOST_EXTENDED),
"handshake: reading inital communication packet",
"handshake: reading initial communication packet",
errno);
goto error;