diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-07-09 10:49:16 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-07-09 10:49:16 +0200 |
commit | 7ce751225f12c295c6e33dd46cfb5dcb88f8fbb3 (patch) | |
tree | 910e7fcae5b2b502900c67782b4db22d9c242f21 /tests/pws.rs | |
parent | 445e920986db276d0c5c39709aa76dd290773e8f (diff) | |
parent | 62e8ee8f5d02511d6eb5dc179b087b04e88c1b94 (diff) | |
download | nitrokey-rs-7ce751225f12c295c6e33dd46cfb5dcb88f8fbb3.tar.gz nitrokey-rs-7ce751225f12c295c6e33dd46cfb5dcb88f8fbb3.tar.bz2 |
Merge branch 'connection-manager-mut' into next
Refactor the connection management to prevent multiple device
connections at the same time.
RFC: https://lists.sr.ht/~ireas/nitrokey-rs-dev/%3C20190126174327.tbuyk2s535kfiqm4%40localhost%3E
Diffstat (limited to 'tests/pws.rs')
-rw-r--r-- | tests/pws.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pws.rs b/tests/pws.rs index b0e5abe..7169695 100644 --- a/tests/pws.rs +++ b/tests/pws.rs @@ -32,9 +32,9 @@ fn get_slot_name_direct(slot: u8) -> Result<String, Error> { } } -fn get_pws<T>(device: &mut T) -> PasswordSafe +fn get_pws<'a, T>(device: &mut T) -> PasswordSafe<'_, 'a> where - T: Device, + T: Device<'a>, { unwrap_ok!(device.get_password_safe(DEFAULT_USER_PIN)) } |