Added a profound error message in case DNS servers could not bind.

This commit is contained in:
Revertron
2021-04-03 21:09:55 +02:00
parent ed3150cf4a
commit cde1ccb6f7
2 changed files with 5 additions and 4 deletions
+1 -2
View File
@@ -69,11 +69,10 @@ fn main() {
if let Some(settings) = Settings::load(&path) {
let string = toml::to_string(&settings).unwrap();
println!("{}", &string);
return;
} else {
println!("Error loading config for upgrade!");
return;
}
return;
}
};