1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-10 15:30:55 +00:00

firmware: fix typo in unfinished_backup

This commit is contained in:
Pavol Rusnak 2018-09-20 13:52:22 +02:00
parent bf266f0fd9
commit 9afaeff36f
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -67,7 +67,7 @@ void fsm_msgGetFeatures(const GetFeatures *msg)
resp->has_pin_cached = true; resp->pin_cached = session_isPinCached();
resp->has_passphrase_cached = true; resp->passphrase_cached = session_isPassphraseCached();
resp->has_needs_backup = true; resp->needs_backup = storage_needsBackup();
resp->unfinished_backup = true; resp->unfinished_backup = storage_unfinishedBackup();
resp->has_unfinished_backup = true; resp->unfinished_backup = storage_unfinishedBackup();
resp->has_flags = true; resp->flags = storage_getFlags();
resp->has_model = true; strlcpy(resp->model, "1", sizeof(resp->model));