diff --git a/src/util.rs b/src/util.rs index 2549c5a..6fb69a9 100644 --- a/src/util.rs +++ b/src/util.rs @@ -200,7 +200,7 @@ pub fn zeroize(object: impl Zeroize) { } pub fn read_line(ln: &str) { - print!("{}", ln); + print_ex!("{}", ln); io::stdout().flush().ok(); let mut buff = String::new(); let _ = io::stdin().read_line(&mut buff).expect("Read line from stdin");