From cf76551cb3ad7ee8597bcbf2de2426daa7fd561e Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 9 Jan 2021 14:28:27 +0100 Subject: lib/vtls/openssl.c: fix typo in an error message --- lib/vtls/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index dfb5ed54d..5e0eef8ad 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1871,7 +1871,7 @@ static CURLcode verifystatus(struct connectdata *conn, /* Compute the certificate's ID */ cert = SSL_get_peer_certificate(backend->handle); if(!cert) { - failf(data, "Error getting peer certficate"); + failf(data, "Error getting peer certificate"); result = CURLE_SSL_INVALIDCERTSTATUS; goto end; } -- cgit v1.2.1