diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-25 05:06:07 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-25 05:06:07 +0000 |
commit | d9e7f0ba6b0b25a10b5b8db776d99427629b6537 (patch) | |
tree | c87df7e56de39d08402a341c2e29fbf2626f8b10 /lib/libcrypto/pkcs12 | |
parent | 18ca712f5d44dfdde073ea7b7cdbfd7ea4a69e6b (diff) |
fix indent
Diffstat (limited to 'lib/libcrypto/pkcs12')
-rw-r--r-- | lib/libcrypto/pkcs12/p12_mutl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/pkcs12/p12_mutl.c b/lib/libcrypto/pkcs12/p12_mutl.c index 9a8a411c3ff..7474bf5ff3e 100644 --- a/lib/libcrypto/pkcs12/p12_mutl.c +++ b/lib/libcrypto/pkcs12/p12_mutl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: p12_mutl.c,v 1.29 2022/07/24 18:45:21 tb Exp $ */ +/* $OpenBSD: p12_mutl.c,v 1.30 2022/07/25 05:06:06 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -118,7 +118,7 @@ PKCS12_gen_mac(PKCS12 *p12, const char *pass, int passlen, if ((hmac = HMAC_CTX_new()) == NULL) goto err; if (!HMAC_Init_ex(hmac, key, md_size, md_type, NULL)) - goto err; + goto err; if (!HMAC_Update(hmac, p12->authsafes->d.data->data, p12->authsafes->d.data->length)) goto err; |