Skip to content

Commit

Permalink
downgrade TLS error to info (fix #352)
Browse files Browse the repository at this point in the history
  • Loading branch information
yrutschle committed Nov 20, 2022
1 parent 555717e commit f77d08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ parse_tls_header(const struct TLSProtocol *tls_data, const char *data, size_t da

tls_content_type = data[0];
if (tls_content_type != TLS_HANDSHAKE_CONTENT_TYPE) {
print_message(msg_probe_error, "Request did not begin with TLS handshake.\n");
print_message(msg_probe_info, "Request did not begin with TLS handshake.\n");
return TLS_EPROTOCOL;
}

Expand Down

0 comments on commit f77d08e

Please sign in to comment.