diff options
-rw-r--r-- | NitrokeyManager.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/NitrokeyManager.cc b/NitrokeyManager.cc index 9562be1..7b8deaa 100644 --- a/NitrokeyManager.cc +++ b/NitrokeyManager.cc @@ -556,12 +556,8 @@ using nitrokey::misc::strcpyT; break; } case DeviceModel::STORAGE: { - if (get_minor_firmware_version() <= 53) { - string counter = to_string(hotp_counter); - strcpyT(payload.slot_counter_s, counter.c_str()); - } else { - payload.slot_counter = hotp_counter; - } + string counter = to_string(hotp_counter); + strcpyT(payload.slot_counter_s, counter.c_str()); break; } default: |