tape: restore_key - always update key, even if there is already an entry

This commit is contained in:
Dietmar Maurer
2021-01-21 07:46:21 +01:00
parent 4dafc513cc
commit 18bd6ba13d
3 changed files with 7 additions and 5 deletions

View File

@ -183,7 +183,7 @@ pub fn create_key(
let fingerprint = key_config.fingerprint.clone().unwrap();
insert_key(key, key_config)?;
insert_key(key, key_config, false)?;
Ok(fingerprint)
}