From e010cbfe9bd26b64be2610b29703f50e50f0b4f8 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Tue, 23 Jul 2019 18:36:35 -0700 Subject: fixup doc tests `cargo test --all` (which only appears safe to run in the CI environment) doesn't get as far as `cargo test --doc` so I overlooked these. --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 64d5601..22534de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -38,7 +38,7 @@ //! // Connect to the local SSH server //! let tcp = TcpStream::connect("127.0.0.1:22").unwrap(); //! let mut sess = Session::new().unwrap(); -//! sess.handshake(&tcp).unwrap(); +//! sess.handshake(tcp).unwrap(); //! //! // Try to authenticate with the first identity in the agent. //! sess.userauth_agent("username").unwrap(); @@ -56,7 +56,7 @@ //! // Connect to the local SSH server //! let tcp = TcpStream::connect("127.0.0.1:22").unwrap(); //! let mut sess = Session::new().unwrap(); -//! sess.handshake(&tcp).unwrap(); +//! sess.handshake(tcp).unwrap(); //! //! sess.userauth_password("username", "password").unwrap(); //! assert!(sess.authenticated()); @@ -72,7 +72,7 @@ //! // Connect to the local SSH server //! let tcp = TcpStream::connect("127.0.0.1:22").unwrap(); //! let mut sess = Session::new().unwrap(); -//! sess.handshake(&tcp).unwrap(); +//! sess.handshake(tcp).unwrap(); //! sess.userauth_agent("username").unwrap(); //! //! let mut channel = sess.channel_session().unwrap(); @@ -95,7 +95,7 @@ //! // Connect to the local SSH server //! let tcp = TcpStream::connect("127.0.0.1:22").unwrap(); //! let mut sess = Session::new().unwrap(); -//! sess.handshake(&tcp).unwrap(); +//! sess.handshake(tcp).unwrap(); //! sess.userauth_agent("username").unwrap(); //! //! let mut remote_file = sess.scp_send(Path::new("remote"), @@ -114,7 +114,7 @@ //! // Connect to the local SSH server //! let tcp = TcpStream::connect("127.0.0.1:22").unwrap(); //! let mut sess = Session::new().unwrap(); -//! sess.handshake(&tcp).unwrap(); +//! sess.handshake(tcp).unwrap(); //! sess.userauth_agent("username").unwrap(); //! //! let (mut remote_file, stat) = sess.scp_recv(Path::new("remote")).unwrap(); -- cgit v1.2.3