1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Fix code style

Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
This commit is contained in:
Agathiyan Bragadeesh
2023-08-14 16:31:11 +01:00
parent af3e548c77
commit eb55867520
2 changed files with 11 additions and 11 deletions

View File

@ -298,10 +298,10 @@ int mbedtls_x509_string_to_names(mbedtls_asn1_named_data **head, const char *nam
&tag)) != 0) { &tag)) != 0) {
if (numericoid) { if (numericoid) {
return MBEDTLS_ERR_X509_INVALID_NAME; return MBEDTLS_ERR_X509_INVALID_NAME;
} } else {
else {
if ((parse_ret = if ((parse_ret =
parse_attribute_value_string(s, (int) (c - s), data, &data_len)) != 0) { parse_attribute_value_string(s, (int) (c - s), data,
&data_len)) != 0) {
return parse_ret; return parse_ret;
} }
tag = attr_descr->default_tag; tag = attr_descr->default_tag;