Replacing tabs with spaces

Signed-off-by: toth92g <toth92g@gmail.com>
This commit is contained in:
toth92g
2021-05-04 11:31:03 +02:00
committed by Przemek Stekiel
parent e763098b42
commit bf2dae1516

View File

@@ -636,10 +636,10 @@ static int x509_get_subject_key_id( unsigned char** p,
subject_key_id->p = *p;
*p += len;
}
if( *p != end )
return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
if( *p != end )
return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
return( 0 );
}