From aac72550b72f3a20f18961765a51d89540dd9a22 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 24 Jun 2024 15:25:18 +1000 Subject: [PATCH] chore: Correct type in log message --- rust/pact_ffi/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/pact_ffi/src/lib.rs b/rust/pact_ffi/src/lib.rs index 860ee877..579a6e9e 100644 --- a/rust/pact_ffi/src/lib.rs +++ b/rust/pact_ffi/src/lib.rs @@ -84,9 +84,9 @@ pub unsafe extern fn pactffi_init(log_env_var: *const c_char) { }; if CryptoProvider::get_default().is_none() { - warn!("No TLS cryptographic provided has been configured, defaulting to the standard FIPS provider from ring"); + warn!("No TLS cryptographic provider has been configured, defaulting to the standard provider from ring"); if let Err(_err) = CryptoProvider::install_default(default_provider()) { - error!("Failed to install the standard FIPS provider, HTTPS requests may not work"); + error!("Failed to install the standard cryptographic provider, HTTPS requests may not work"); } } }