summaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-04-15 10:42:01 +1000
committerPauli <pauli@openssl.org>2021-04-21 09:27:51 +1000
commit2ec6491669d1a93a5c4a445715aae6b1582cb2a4 (patch)
tree94e4ddcb479314160fb256ff218d175213d92359 /crypto/asn1
parentc4685815bf7edbc546add24b9fa99b632a2ba366 (diff)
asn1: fix indentation
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14881)
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/a_digest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/a_digest.c b/crypto/asn1/a_digest.c
index cac6c327da..9d7efcdb70 100644
--- a/crypto/asn1/a_digest.c
+++ b/crypto/asn1/a_digest.c
@@ -75,8 +75,8 @@ int ossl_asn1_item_digest_ex(const ASN1_ITEM *it, const EVP_MD *md, void *asn,
#endif
fetched_md = EVP_MD_fetch(libctx, EVP_MD_name(md), propq);
}
- if (fetched_md == NULL)
- goto err;
+ if (fetched_md == NULL)
+ goto err;
ret = EVP_Digest(str, i, data, len, fetched_md, NULL);
err: