From 39c0d101c912557c80f1cd3899c68973607e7f53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Th=C3=A9riault?= Date: Sun, 27 Oct 2019 18:52:33 -0400 Subject: [PATCH] Fixed what I assume was a copy-pasting error --- src/setup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.rs b/src/setup.rs index 3e15888..13fb75f 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -269,7 +269,7 @@ pub fn init() -> Config { println!("Are you sure you want to leave an empty password? This will disable authentication: [y/N]: "); let mut answer = String::new(); stdin.read_line(&mut answer).unwrap_or_else(|e| { - eprintln!("Can't read password: {}", e); + eprintln!("Can't read answer: {}", e); process::exit(1); });