Fix session cloning

This commit is contained in:
Steven Fackler 2018-02-17 10:12:47 -08:00
parent b1e7bf4d54
commit 3f5e3f095e
1 changed files with 1 additions and 1 deletions

View File

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