process_encrypted_request(): Don't send an error response in case of unsupported...
authorFabian Keil <fk@fabiankeil.de>
Tue, 3 Mar 2020 11:26:33 +0000 (12:26 +0100)
committerFabian Keil <fk@fabiankeil.de>
Thu, 12 Mar 2020 10:07:21 +0000 (11:07 +0100)
client_protocol_is_unsupported() already takes care of that.

Sponsored by: Robert Klemme

jcc.c

diff --git a/jcc.c b/jcc.c
index dbb4979..99c423c 100644 (file)
--- 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;
    }