crypto/initthread.c: fix misspelled OSSL_provider_init() in comment

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22450)
This commit is contained in:
Matthias St. Pierre 2023-09-22 17:43:19 +02:00 committed by Hugo Landau
parent 8dc82c0255
commit c61fda2ff8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
*
* The FIPS provider tells libcrypto about which threads it is interested in
* by calling "c_thread_start" which is a function pointer created during
* provider initialisation (i.e. OSSL_init_provider).
* provider initialisation (i.e. OSSL_provider_init).
*/
extern OSSL_FUNC_core_thread_start_fn *c_thread_start;
#endif