diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-04-10 07:40:29 +0200 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-04-10 07:40:29 +0200 | 
| commit | 83da928701b52005b1e29234164b2d21bfdeff39 (patch) | |
| tree | e41ff361b69c0591d8216b487e3738036974ac5e | |
| parent | f9f89587026cd22115f06c216e2d69c4142c7060 (diff) | |
| download | libnitrokey-83da928701b52005b1e29234164b2d21bfdeff39.tar.gz libnitrokey-83da928701b52005b1e29234164b2d21bfdeff39.tar.bz2 | |
Precise value for p.enable_user_password field to 1 on true, as in firmware
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
| -rw-r--r-- | NitrokeyManager.cc | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/NitrokeyManager.cc b/NitrokeyManager.cc index db0c0a9..4008bd0 100644 --- a/NitrokeyManager.cc +++ b/NitrokeyManager.cc @@ -840,11 +840,11 @@ using nitrokey::misc::strcpyT;      void NitrokeyManager::write_config(uint8_t numlock, uint8_t capslock, uint8_t scrolllock, bool enable_user_password,                                         bool delete_user_password, const char *admin_temporary_password) {          auto p = get_payload<stick10_08::WriteGeneralConfig>(); -        p.numlock = (uint8_t) numlock; -        p.capslock = (uint8_t) capslock; -        p.scrolllock = (uint8_t) scrolllock; -        p.enable_user_password = (uint8_t) enable_user_password; -        p.delete_user_password = (uint8_t) delete_user_password; +        p.numlock = numlock; +        p.capslock = capslock; +        p.scrolllock = scrolllock; +        p.enable_user_password = static_cast<uint8_t>(enable_user_password ? 1 : 0); +        p.delete_user_password = static_cast<uint8_t>(delete_user_password ? 1 : 0);          if (is_authorization_command_supported()){            authorize_packet<stick10_08::WriteGeneralConfig, Authorize>(p, admin_temporary_password, device);          } else { | 
