From c9e03e7fecd9b4c39896ae57094df9eeb8ce902d Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 26 Aug 2020 19:07:05 +0200 Subject: [PATCH] send_crunch_response(): Include the full URL in a log message Sponsored by: Robert Klemme --- jcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jcc.c b/jcc.c index 5f7a1fd3..fab23781 100644 --- a/jcc.c +++ b/jcc.c @@ -881,8 +881,8 @@ static void send_crunch_response(struct client_state *csp, struct http_response { /* There is nothing we can do about it. */ log_error(LOG_LEVEL_CONNECT, "Couldn't deliver the error message " - "for %s through client socket %d using TLS/SSL", - http->url, csp->cfd); + "for https://%s%s through client socket %d using TLS/SSL", + http->hostport, http->url, csp->cfd); } } else -- 2.39.2