summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2024-02-14 10:03:05 +0100
committerTomas Mraz <tomas@openssl.org>2024-04-10 09:24:15 +0200
commit15eb7b6875e5d717c1bb47a4e6022fd8a9fa3adb (patch)
tree91b15e48131a29a019c4edcc33ce6492af21b05f /providers
parent9b87c5a3ffa1ca233be96dd0bce812c04bad53fe (diff)
Fix typos found by codespell
Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24013)
Diffstat (limited to 'providers')
-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 46a056bc2a..3e88e7d064 100644
--- a/providers/implementations/rands/drbg.c
+++ b/providers/implementations/rands/drbg.c
@@ -31,7 +31,7 @@
*
* The OpenSSL model is to have new and free functions, and that new
* does all initialization. That is not the NIST model, which has
- * instantiation and un-instantiate, and re-use within a new/free
+ * instantiation and un-instantiate, and reuse within a new/free
* lifecycle. (No doubt this comes from the desire to support hardware
* DRBG, where allocation of resources on something like an HSM is
* a much bigger deal than just re-setting an allocated resource.)