mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-04-25 11:56:37 +00:00
Fix a few style issues
This commit is contained in:
parent
8794a4290d
commit
ec1c222947
|
@ -1663,7 +1663,7 @@ read_record_header:
|
|||
{
|
||||
ciph_offset = 35 + sess_len;
|
||||
}
|
||||
#endif
|
||||
#endif /* MBEDTLS_SSL_PROTO_TLS */
|
||||
|
||||
ciph_len = ( buf[ciph_offset + 0] << 8 )
|
||||
| ( buf[ciph_offset + 1] );
|
||||
|
|
|
@ -4216,7 +4216,7 @@ int mbedtls_ssl_prepare_handshake_record( mbedtls_ssl_context *ssl )
|
|||
return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif /* MBEDTLS_SSL_PROTO_TLS */
|
||||
|
||||
return( 0 );
|
||||
}
|
||||
|
@ -10847,7 +10847,7 @@ void mbedtls_ssl_read_version( int *major, int *minor, int transport,
|
|||
*major = ver[0];
|
||||
*minor = ver[1];
|
||||
}
|
||||
#endif
|
||||
#endif /* MBEDTLS_SSL_PROTO_TLS */
|
||||
}
|
||||
|
||||
int mbedtls_ssl_set_calc_verify_md( mbedtls_ssl_context *ssl, int md )
|
||||
|
|
Loading…
Reference in a new issue