From 10cf23701356145145e42f153e6719866b935885 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 3 Mar 2020 12:26:33 +0100 Subject: [PATCH] process_encrypted_request(): Don't send an error response in case of unsupported protocols client_protocol_is_unsupported() already takes care of that. Sponsored by: Robert Klemme --- jcc.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/jcc.c b/jcc.c index dbb49790..99c423c5 100644 --- a/jcc.c +++ b/jcc.c @@ -2275,8 +2275,11 @@ static jb_err process_encrypted_request(struct client_state *csp) if (client_protocol_is_unsupported(csp, request_line)) { - ssl_send_data(&(csp->mbedtls_client_attr.ssl), - (const unsigned char *)CHEADER, strlen(CHEADER)); + /* + * If the protocol is unsupported we're done here. + * client_protocol_is_unsupported() took care of sending + * the error response and logging the error message. + */ return JB_ERR_PARSE; } -- 2.39.2