mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Default tls_cert_key_path to tls_cert_path
This commit is contained in:
parent
cf8ba631e6
commit
5fabdbf2d1
1 changed files with 4 additions and 1 deletions
|
@ -161,6 +161,9 @@ 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_key_path = matches.value_of("tls_cert_key_path").map(PathBuf::from);
|
||||
globals.tls_cert_key_path = matches
|
||||
.value_of("tls_cert_key_path")
|
||||
.map(PathBuf::from)
|
||||
.or_else(|| globals.tls_cert_path.clone());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue