Commit 11129aa5 authored by Steven Fackler's avatar Steven Fackler
Browse files

Rustfmt

parent a31acdbb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ unsafe extern "C" fn bread<S: Read>(bio: *mut BIO, buf: *mut c_char, len: c_int)
fn retriable_error(err: &io::Error) -> bool {
    match err.kind() {
        io::ErrorKind::WouldBlock | io::ErrorKind::NotConnected => true,
        _ => false
        _ => false,
    }
}

+1 −1
Original line number Diff line number Diff line
@@ -1240,7 +1240,7 @@ impl SslStream<::std::net::TcpStream> {
        Ok(SslStream {
            ssl: self.ssl.clone(),
            _method: self._method.clone(),
            _p: PhantomData
            _p: PhantomData,
        })
    }
}