ssl_store_cert(): Fix typo in an error message
authorFabian Keil <fk@fabiankeil.de>
Wed, 26 Aug 2020 09:25:02 +0000 (11:25 +0200)
committerFabian Keil <fk@fabiankeil.de>
Tue, 1 Sep 2020 10:22:42 +0000 (12:22 +0200)
openssl.c

index a2d8853..81d88b6 100644 (file)
--- 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;
    }