summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2023-09-04 10:22:29 +1000
committerMatt Caswell <matt@openssl.org>2023-09-27 17:22:54 +0100
commit6935101354e1ebcb43aa8afb158603f94c0f9bc6 (patch)
treec4fa76977766835434f2c63ea47b0c70b1793e98
parentc37184f502eb7341e3095ef358a9ebd21facbc46 (diff)
fix indentation
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21964)
-rw-r--r--providers/implementations/rands/drbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/rands/drbg.c b/providers/implementations/rands/drbg.c
index 348d5f5080..1586288692 100644
--- a/providers/implementations/rands/drbg.c
+++ b/providers/implementations/rands/drbg.c
@@ -336,7 +336,7 @@ static size_t prov_drbg_get_nonce(PROV_DRBG *drbg, unsigned char **pout,
memset(&data, 0, sizeof(data));
data.drbg = drbg;
if (!CRYPTO_atomic_add(&dngbl->rand_nonce_count, 1, &data.count,
- dngbl->rand_nonce_lock))
+ dngbl->rand_nonce_lock))
return 0;
return ossl_prov_get_nonce(drbg->provctx, pout, min_len, max_len,
&data, sizeof(data));