Unverified Commit da9eeddb authored by Steven Fackler's avatar Steven Fackler
Browse files

rename

parent 5c7b570e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3106,7 +3106,7 @@ impl SslRef {
    /// Requires OpenSSL 1.1.1 or newer.
    #[corresponds(SSL_bytes_to_cipher_list)]
    #[cfg(ossl111)]
    pub fn bytes_to_ciphers_stack(
    pub fn bytes_to_cipher_list(
        &self,
        bytes: &[u8],
        isv2format: bool,
+1 −1
Original line number Diff line number Diff line
@@ -1459,7 +1459,7 @@ fn client_hello() {
        assert!(ssl.client_hello_ciphers().is_some());
        assert!(ssl.client_hello_compression_methods().is_some());
        assert!(ssl
            .bytes_to_ciphers_stack(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2())
            .bytes_to_cipher_list(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2())
            .is_ok());

        CALLED_BACK.store(true, Ordering::SeqCst);