Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rustls/rustls-ffi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2f9b3d4f840e4184a11e97ea2e792ce8426bc6d7
Choose a base ref
..
head repository: rustls/rustls-ffi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c02b8067c8592740a1fa5fb2aad6c63def62b9fc
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/error.rs
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -386,7 +386,7 @@ impl Display for rustls_result {
rustls_result::Ok => write!(f, "OK"),
Io => write!(f, "I/O error"),
NullParameter => write!(f, "a parameter was NULL"),
InvalidDnsNameError => write!(f, "hostname was either malformed or an IP address (rustls does not support certificates for IP addresses)"),
InvalidDnsNameError => write!(f, "server name was malformed (not a valid hostname or IP address"),
Panic => write!(f, "a Rust component panicked"),
CertificateParseError => write!(f, "error parsing certificate"),
PrivateKeyParseError => write!(f, "error parsing private key"),