From 035df81f5716f08d48438287b93c4a57b927b81e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 4 Sep 2014 12:19:05 -0400 Subject: no reason for these extra & here --- src/client.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client.rs') diff --git a/src/client.rs b/src/client.rs index 94d29ea..544283b 100644 --- a/src/client.rs +++ b/src/client.rs @@ -83,9 +83,9 @@ impl ClientBuilder { ) ); - let hostname = match &self.hostname { - &Some(ref host) => host.clone(), - &None => { + let hostname = match self.hostname { + Some(ref host) => host.clone(), + None => { // XXX get the name of the local end of the connection "localhost".to_string() }, -- cgit v1.2.3-54-g00ecf