Commit b7400d56 authored by Steven Fackler's avatar Steven Fackler
Browse files

Fix algorithm field

parent 68954cfc
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -704,10 +704,9 @@ pub struct CipherBits {
    pub secret: i32,

    /// The number of bits processed by the chosen algorithm.
    pub algorithm: Option<i32>,
    pub algorithm: i32,
}


pub struct SslCipher<'a> {
    cipher: *const ffi::SSL_CIPHER,
    ph: PhantomData<&'a ()>,