From 9a4926b25fc54dd563d2f8ca90febf3ed0206c31 Mon Sep 17 00:00:00 2001 From: Fabien Villepinte Date: Thu, 21 Feb 2019 17:11:55 +0100 Subject: [PATCH] Fix typo in error message --- ext/mysqlnd/mysqlnd_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mysqlnd/mysqlnd_auth.c b/ext/mysqlnd/mysqlnd_auth.c index 26bfa24289c..342005aa36b 100644 --- a/ext/mysqlnd/mysqlnd_auth.c +++ b/ext/mysqlnd/mysqlnd_auth.c @@ -1061,7 +1061,7 @@ mysqlnd_caching_sha2_handle_server_response(struct st_mysqlnd_authentication_plu // The server tried to send a key, which we didn't expect // fall-through default: - php_error_docref(NULL, E_WARNING, "Unexpected server respose while doing caching_sha2 auth: %i", result_packet.response_code); + php_error_docref(NULL, E_WARNING, "Unexpected server response while doing caching_sha2 auth: %i", result_packet.response_code); } DBG_VOID_RETURN;