Unverified Commit 8f889569 authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #844 from sfackler/fix-session-clone

Fix session cloning
parents b1e7bf4d 3f5e3f09
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)
    }
}