From 9afaeff36ff891ab9dbe48b0f514a273975f8cd0 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 20 Sep 2018 13:52:22 +0200 Subject: [PATCH] firmware: fix typo in unfinished_backup --- firmware/fsm_msg_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/fsm_msg_common.h b/firmware/fsm_msg_common.h index a9889de583..979acd813f 100644 --- a/firmware/fsm_msg_common.h +++ b/firmware/fsm_msg_common.h @@ -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));