Skip to content

Commit c3ad2b5

Browse files
author
Martin Cermak
committed
Fix typo in error message
1 parent ec300f6 commit c3ad2b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dbdimp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,7 +2226,7 @@ static bool mariadb_dr_connect(
22262226
}
22272227
if (connected && mysql_get_server_version(sock) < 40100)
22282228
{
2229-
mariadb_dr_do_error(dbh, CR_CONNECTION_ERROR, "Connection error: MariaDB or MySQL server version is older then 4.1.0", "HY000");
2229+
mariadb_dr_do_error(dbh, CR_CONNECTION_ERROR, "Connection error: MariaDB or MySQL server version is older than 4.1.0", "HY000");
22302230
mariadb_db_disconnect(dbh, imp_dbh);
22312231
return FALSE;
22322232
}
@@ -2243,7 +2243,7 @@ static bool mariadb_dr_connect(
22432243
}
22442244
if (mysql_get_server_version(sock) < 40100)
22452245
{
2246-
mariadb_dr_do_error(dbh, CR_CONNECTION_ERROR, "Connection error: MariaDB or MySQL server version is older then 4.1.0", "HY000");
2246+
mariadb_dr_do_error(dbh, CR_CONNECTION_ERROR, "Connection error: MariaDB or MySQL server version is older than 4.1.0", "HY000");
22472247
mariadb_db_disconnect(dbh, imp_dbh);
22482248
return FALSE;
22492249
}

0 commit comments

Comments
 (0)