Skip to content

Commit

Permalink
chore: Correct type in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jun 24, 2024
1 parent f77dd19 commit aac7255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/pact_ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
}
Expand Down

0 comments on commit aac7255

Please sign in to comment.