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

Fix session cloning
This commit is contained in:
Steven Fackler 2018-02-17 10:20:07 -08:00 committed by GitHub
commit 8f8895697d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1553,7 +1553,7 @@ unsafe impl Send for SslSession {}
impl Clone for SslSession { impl Clone for SslSession {
fn clone(&self) -> SslSession { fn clone(&self) -> SslSession {
self.to_owned() SslSessionRef::to_owned(self)
} }
} }