Properly parse the -I and -i options (key file and cert file)

This commit is contained in:
Frank Denis 2021-02-14 23:48:24 +01:00
parent dbe14da43e
commit c3f724118c

View file

@ -160,7 +160,7 @@ pub fn parse_opts(globals: &mut Globals) {
#[cfg(feature = "tls")]
{
globals.tls_cert_path = matches.value_of("tls_cert_key_path").map(PathBuf::from);
globals.tls_cert_path = matches.value_of("tls_cert_path").map(PathBuf::from);
globals.tls_cert_key_path = matches
.value_of("tls_cert_key_path")
.map(PathBuf::from)