From c8fda0a552298e2f7d4a7532db7e6fceea39b251 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 28 May 2008 16:01:49 -0700 Subject: [PATCH] Fix typo in error message. --- lib/vconn-ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vconn-ssl.c b/lib/vconn-ssl.c index 2bdcfb1b..507e032d 100644 --- a/lib/vconn-ssl.c +++ b/lib/vconn-ssl.c @@ -795,7 +795,7 @@ vconn_ssl_set_ca_cert_file(const char *file_name) /* Set up CAs for OpenSSL to trust in verifying the peer's certificate. */ if (SSL_CTX_load_verify_locations(ctx, file_name, NULL) != 1) { - VLOG_ERR("SSL_load_verify_locations: %s", + VLOG_ERR("SSL_CTX_load_verify_locations: %s", ERR_error_string(ERR_get_error(), NULL)); return; } -- 2.30.2