summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Keil <fk@fabiankeil.de>2021-01-09 14:28:27 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-01-11 10:14:56 +0100
commitcf76551cb3ad7ee8597bcbf2de2426daa7fd561e (patch)
treef1eed96ed444e6a649f722e783314361bd7221dc
parentb9d9aabbe9904ab7da52a4049e8c232f669be87a (diff)
downloadcurl-bagder/typos.tar.gz
lib/vtls/openssl.c: fix typo in an error messagebagder/typos
-rw-r--r--lib/vtls/openssl.c2
1 files changed, 1 insertions, 1 deletions
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;
}