Stop using old_path in net.

This commit is contained in:
Ms2ger 2015-03-26 08:59:33 +01:00
parent b5bc73f5cb
commit 9aa2696641
3 changed files with 4 additions and 4 deletions

View file

@ -41,7 +41,7 @@ static mut HOST_TABLE: Option<*mut HashMap<String, String>> = None;
pub fn global_init() {
//TODO: handle bad file path
let path = match env::var("HOST_FILE") {
Ok(host_file_path) => Path::new(host_file_path),
Ok(host_file_path) => host_file_path,
Err(_) => return,
};