From 800a2f4c03658b08bf797d06f2d9c22b84b8223b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 19 Mar 2008 09:52:04 -0700 Subject: [PATCH] Change fatal errors in SSL connection from VLOG_DBG to VLOG_ERR. Suggested by Justin. --- lib/vconn-ssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vconn-ssl.c b/lib/vconn-ssl.c index e243b3c9..2bd0db04 100644 --- a/lib/vconn-ssl.c +++ b/lib/vconn-ssl.c @@ -120,12 +120,12 @@ new_ssl_vconn(const char *name, int fd, enum session_type type, /* Create and configure OpenSSL stream. */ ssl = SSL_new(ctx); if (ssl == NULL) { - VLOG_DBG("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL)); + VLOG_ERR("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL)); close(fd); return ENOPROTOOPT; } if (SSL_set_fd(ssl, fd) == 0) { - VLOG_DBG("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL)); + VLOG_ERR("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL)); goto error; } -- 2.30.2