diff options
author | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-02-21 17:11:55 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-02-21 18:24:39 +0100 |
commit | 9a4926b25fc54dd563d2f8ca90febf3ed0206c31 (patch) | |
tree | 0371e54865c715020ff80c8668e8d33a59d37569 /ext/mysqlnd/mysqlnd_auth.c | |
parent | b8244244815a2e2468134f146be07fcf570f9e9a (diff) | |
download | php-git-9a4926b25fc54dd563d2f8ca90febf3ed0206c31.tar.gz |
Fix typo in error message
Diffstat (limited to 'ext/mysqlnd/mysqlnd_auth.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_auth.c b/ext/mysqlnd/mysqlnd_auth.c index 26bfa24289..342005aa36 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; |