aboutsummaryrefslogtreecommitdiff
path: root/tests/pws.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-01-17 13:38:28 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-01-20 21:08:52 +0000
commitc191e875492ff8aeab1b4493b87486cd265f0edc (patch)
tree5892f3787c3a67dac859a3dba5d056034bf1bcc4 /tests/pws.rs
parentc3e551dd40142bcd2552972d549f31ad7483621d (diff)
downloadnitrokey-rs-c191e875492ff8aeab1b4493b87486cd265f0edc.tar.gz
nitrokey-rs-c191e875492ff8aeab1b4493b87486cd265f0edc.tar.bz2
Introduce the Error::UnexpectedError variant
The UnexpectedError variant is used when a libnitrokey function returns a value that violates the function’s contract, for example if a function returns a null pointer although it guarantees to never return null. Previously, we returned a CommandError::Unspecified in these cases.
Diffstat (limited to 'tests/pws.rs')
-rw-r--r--tests/pws.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pws.rs b/tests/pws.rs
index 51e6189..b89d7f6 100644
--- a/tests/pws.rs
+++ b/tests/pws.rs
@@ -14,7 +14,7 @@ use crate::util::{ADMIN_PASSWORD, USER_PASSWORD};
fn get_slot_name_direct(slot: u8) -> Result<String, Error> {
let ptr = unsafe { nitrokey_sys::NK_get_password_safe_slot_name(slot) };
if ptr.is_null() {
- return Err(CommandError::Undefined.into());
+ return Err(Error::UnexpectedError);
}
let s = unsafe { CStr::from_ptr(ptr).to_string_lossy().into_owned() };
unsafe { free(ptr as *mut c_void) };