Make it clear that 'enter keyring password' is for decryption

This commit is contained in:
Olivier 'reivilibre' 2023-11-04 10:28:57 +00:00
parent 87b6530aed
commit 2551c0e641

View File

@ -48,7 +48,7 @@ pub async fn pre_open_keyring_at_path(
pub async fn open_keyring_interactive(input: UnlockedOrLockedKeyring) -> eyre::Result<Keyring> {
match input {
UnlockedOrLockedKeyring::Locked { deriver, lockbox } => {
println!("enter keyring password:");
println!("enter keyring password to decrypt:");
let stdin = tokio::io::stdin();
let mut stdin_br = BufReader::new(stdin);
let mut line = String::new();