Fixed argument parsing for ipv6 'good' topology (#751)

This commit is contained in:
Jędrzej Stuczyński
2021-08-25 14:50:57 +01:00
committed by GitHub
parent b3568a26f5
commit c6b286a1db
+1 -1
View File
@@ -146,7 +146,7 @@ fn override_config(mut config: Config, matches: &ArgMatches) -> Config {
config = config.with_v4_good_topology(v4_topology_path)
}
if let Some(v6_topology_path) = matches.value_of(V4_TOPOLOGY_ARG) {
if let Some(v6_topology_path) = matches.value_of(V6_TOPOLOGY_ARG) {
config = config.with_v6_good_topology(v6_topology_path)
}