From: Ben Pfaff Date: Wed, 28 May 2008 23:01:49 +0000 (-0700) Subject: Fix typo in error message. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8fda0a552298e2f7d4a7532db7e6fceea39b251;p=openvswitch Fix typo in error message. --- 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; }