mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 19:20:18 +00:00
fix coding style issues
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
parent
8253486c4f
commit
fd310ebf2d
@ -132,7 +132,7 @@ static int ssl_tls13_offered_psks_check_identity_match_ticket(
|
|||||||
size_t identity_len,
|
size_t identity_len,
|
||||||
uint32_t obfuscated_ticket_age )
|
uint32_t obfuscated_ticket_age )
|
||||||
{
|
{
|
||||||
int ret;
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
||||||
unsigned char *ticket_buffer;
|
unsigned char *ticket_buffer;
|
||||||
|
|
||||||
((void) obfuscated_ticket_age);
|
((void) obfuscated_ticket_age);
|
||||||
@ -146,12 +146,9 @@ static int ssl_tls13_offered_psks_check_identity_match_ticket(
|
|||||||
ssl->conf->f_ticket_parse == NULL ? "NOT " : "",
|
ssl->conf->f_ticket_parse == NULL ? "NOT " : "",
|
||||||
ssl->conf->f_ticket_write == NULL ? "NOT " : "" ) );
|
ssl->conf->f_ticket_write == NULL ? "NOT " : "" ) );
|
||||||
|
|
||||||
if( ssl->conf->f_ticket_parse == NULL ||
|
|
||||||
identity_len == 0 )
|
|
||||||
{
|
|
||||||
/* Ticket parser is not configured, Skip */
|
/* Ticket parser is not configured, Skip */
|
||||||
|
if( ssl->conf->f_ticket_parse == NULL || identity_len == 0 )
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
|
||||||
|
|
||||||
/* We create a copy of the encrypted ticket since decrypting
|
/* We create a copy of the encrypted ticket since decrypting
|
||||||
* it into the same buffer will wipe-out the original content.
|
* it into the same buffer will wipe-out the original content.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user