From fbf82068d1c53b2c9a6e4d77ca1cc77cdb5566b4 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 12 Jan 2023 01:14:33 +0100 Subject: [PATCH] Only retrieve clap arguments as String, don't expect it to be smart Fixes #94 --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index 643463a..287cf8a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -232,10 +232,10 @@ pub fn parse_opts(globals: &mut Globals) { #[cfg(feature = "tls")] { globals.tls_cert_path = matches - .get_one::("tls_cert_path") + .get_one::("tls_cert_path") .map(PathBuf::from); globals.tls_cert_key_path = matches - .get_one::("tls_cert_key_path") + .get_one::("tls_cert_key_path") .map(PathBuf::from) .or_else(|| globals.tls_cert_path.clone()); }