From 96a051ef741fd25659cb1d0ddb4dc00c533ad8cf Mon Sep 17 00:00:00 2001 From: Thijs Cadier Date: Thu, 3 Sep 2015 12:13:36 +0200 Subject: [PATCH] Whitespace --- src/client.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/client.rs b/src/client.rs index 2febda9..92c572e 100644 --- a/src/client.rs +++ b/src/client.rs @@ -134,7 +134,7 @@ impl SslOptions { try!(File::open(f.as_path())); Self::path_ptr(f) }, - None => ptr::null() + None => ptr::null() }, pem_pwd: match pem_password { Some(ref password) => CString::new(password.clone()).unwrap().as_ptr(), @@ -145,24 +145,24 @@ impl SslOptions { try!(File::open(f.as_path())); Self::path_ptr(f) }, - None => ptr::null() + None => ptr::null() }, ca_dir: match ca_dir { Some(ref f) => { try!(File::open(f.as_path())); Self::path_ptr(f) }, - None => ptr::null() + None => ptr::null() }, crl_file: match crl_file { Some(ref f) => { try!(File::open(f.as_path())); Self::path_ptr(f) }, - None => ptr::null() + None => ptr::null() }, weak_cert_validation: weak_cert_validation as u8, - padding: unsafe { mem::uninitialized() } + padding: unsafe { mem::uninitialized() } }; Ok(SslOptions {