From 079d37212054f93b4e113195e9266ad96176d435 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 26 Aug 2020 11:25:02 +0200 Subject: [PATCH] ssl_store_cert(): Fix typo in an error message --- openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl.c b/openssl.c index a2d8853b..81d88b69 100644 --- a/openssl.c +++ b/openssl.c @@ -416,7 +416,7 @@ static int ssl_store_cert(struct client_state *csp, X509* crt) if (BIO_puts(bio, "\nsubject name : ") <= 0) { - log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for sublect failed"); + log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for subject failed"); ret = -1; goto exit; } -- 2.39.2