diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-01-17 04:15:31 +0000 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-01-20 21:08:26 +0000 |
commit | 944e1fa0d51e547dde2a9368d2b8431b109f63c4 (patch) | |
tree | 0a8b2d5bb9a00149cefb6eecaaf8ac556e961690 /tests/pws.rs | |
parent | cafc3a6f8cfb9f82343c1d3fe843c7f8d7ef1136 (diff) | |
download | nitrokey-rs-944e1fa0d51e547dde2a9368d2b8431b109f63c4.tar.gz nitrokey-rs-944e1fa0d51e547dde2a9368d2b8431b109f63c4.tar.bz2 |
Move the CommandError::Unknown to Error
An error code can not only indiciate a command error, but also a library
or device communication error. Therefore, the variant for an unknown
error code should be placed in the top-level Error enum instead of the
CommandError enum.
Diffstat (limited to 'tests/pws.rs')
-rw-r--r-- | tests/pws.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pws.rs b/tests/pws.rs index f12af48..a4647bd 100644 --- a/tests/pws.rs +++ b/tests/pws.rs @@ -21,7 +21,7 @@ fn get_slot_name_direct(slot: u8) -> Result<String, Error> { let error = unsafe { nitrokey_sys::NK_get_last_command_status() } as c_int; match error { 0 => Ok(s), - other => Err(CommandError::from(other).into()), + other => Err(Error::from(other)), } } false => Ok(s), |