From df9bb742121a74f8b2bc2b7cfb4bb7e17d4e5149 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 30 Oct 2023 21:13:50 +0100 Subject: [PATCH] create_client_ssl_connection(): Make it more obviours from an error message that a function failed --- openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl.c b/openssl.c index 4b1fceb5..39f46531 100644 --- a/openssl.c +++ b/openssl.c @@ -803,7 +803,7 @@ extern int create_client_ssl_connection(struct client_state *csp) if (ret < 0) { log_error(LOG_LEVEL_ERROR, - "generate_host_certificate failed: %d", ret); + "generate_host_certificate() failed: %d", ret); ret = -1; goto exit; } -- 2.39.2