Fix algorithm field

This commit is contained in:
Steven Fackler 2016-10-16 23:22:00 -07:00
parent 68954cfc51
commit b7400d56e8
1 changed files with 1 additions and 2 deletions

View File

@ -704,10 +704,9 @@ pub struct CipherBits {
pub secret: i32, pub secret: i32,
/// The number of bits processed by the chosen algorithm. /// The number of bits processed by the chosen algorithm.
pub algorithm: Option<i32>, pub algorithm: i32,
} }
pub struct SslCipher<'a> { pub struct SslCipher<'a> {
cipher: *const ffi::SSL_CIPHER, cipher: *const ffi::SSL_CIPHER,
ph: PhantomData<&'a ()>, ph: PhantomData<&'a ()>,