mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Remove spaces at end of line in ssl/statem
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Matt Caswell <matt@openssl.org> GH: #4934
This commit is contained in:
parent
b4ff66223b
commit
56d362881e
@ -1047,7 +1047,7 @@ static int final_alpn(SSL *s, unsigned int context, int sent)
|
||||
* we also have to do this before we decide whether to accept early_data.
|
||||
* In TLSv1.3 we've already negotiated our cipher so we do this call now.
|
||||
* For < TLSv1.3 we defer it until after cipher negotiation.
|
||||
*
|
||||
*
|
||||
* On failure SSLfatal() already called.
|
||||
*/
|
||||
return tls_handle_alpn(s);
|
||||
|
@ -1202,7 +1202,7 @@ int tls_parse_stoc_maxfragmentlen(SSL *s, PACKET *pkt, unsigned int context,
|
||||
unsigned int value;
|
||||
|
||||
if (PACKET_remaining(pkt) != 1 || !PACKET_get_1(pkt, &value)) {
|
||||
SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PARSE_STOC_MAXFRAGMENTLEN,
|
||||
SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PARSE_STOC_MAXFRAGMENTLEN,
|
||||
SSL_R_BAD_EXTENSION);
|
||||
return 0;
|
||||
}
|
||||
|
@ -1081,7 +1081,7 @@ EXT_RETURN tls_construct_stoc_status_request(SSL *s, WPACKET *pkt,
|
||||
*/
|
||||
if (SSL_IS_TLS13(s) && !tls_construct_cert_status_body(s, pkt)) {
|
||||
/* SSLfatal() already called */
|
||||
return EXT_RETURN_FAIL;
|
||||
return EXT_RETURN_FAIL;
|
||||
}
|
||||
if (!WPACKET_close(pkt)) {
|
||||
SSLfatal(s, SSL_AD_INTERNAL_ERROR,
|
||||
|
@ -654,7 +654,7 @@ WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
|
||||
* Actually this is the end of the handshake, but we're going
|
||||
* straight into writing the session ticket out. So we finish off
|
||||
* the handshake, but keep the various buffers active.
|
||||
*
|
||||
*
|
||||
* Calls SSLfatal as required.
|
||||
*/
|
||||
return tls_finish_handshake(s, wst, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user