From 53711cca2edb48e0d4ee6820c6b91f2a115836cd Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 30 Jan 2019 19:26:37 +0000 Subject: Rename CommandError variant to NitrokeyError As the error variant not only contains nitrokey::CommandError, but all nitrokey::Error variants, it is renamed from CommandError to NitrokeyError. --- nitrocli/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nitrocli/src/commands.rs') diff --git a/nitrocli/src/commands.rs b/nitrocli/src/commands.rs index ff39a12..cf6f841 100644 --- a/nitrocli/src/commands.rs +++ b/nitrocli/src/commands.rs @@ -38,7 +38,7 @@ const NITROKEY_DEFAULT_ADMIN_PIN: &str = "12345678"; /// Create an `error::Error` with an error message of the format `msg: err`. fn get_error(msg: &'static str, err: nitrokey::Error) -> Error { - Error::CommandError(Some(msg), err) + Error::NitrokeyError(Some(msg), err) } /// Set `libnitrokey`'s log level based on the execution context's verbosity. -- cgit v1.2.1