Commit 3f5e3f09 authored by Steven Fackler's avatar Steven Fackler
Browse files

Fix session cloning

parent b1e7bf4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1553,7 +1553,7 @@ unsafe impl Send for SslSession {}

impl Clone for SslSession {
    fn clone(&self) -> SslSession {
        self.to_owned()
        SslSessionRef::to_owned(self)
    }
}