Fix typo in error message.
authorBen Pfaff <blp@nicira.com>
Wed, 28 May 2008 23:01:49 +0000 (16:01 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 28 May 2008 23:01:49 +0000 (16:01 -0700)
lib/vconn-ssl.c

index 2bdcfb1b5ffe28ec207045f5b7fab27162ce5dde..507e032debb6ef93ad9f5e7974e9b86b362aab73 100644 (file)
@@ -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;
     }