From 19ff5d928bcaed1db9d4e6d18f0309a83f9fbdfe Mon Sep 17 00:00:00 2001 From: loatheb Date: Thu, 23 Mar 2023 10:25:40 +0800 Subject: [PATCH] fix: change back to trezor.io --- legacy/firmware/fsm_msg_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/firmware/fsm_msg_common.h b/legacy/firmware/fsm_msg_common.h index c13e7bc90e..1894933bca 100644 --- a/legacy/firmware/fsm_msg_common.h +++ b/legacy/firmware/fsm_msg_common.h @@ -36,7 +36,7 @@ bool get_features(Features *resp) { if (device_is_factory_mode()) { uint32_t cert_len = 0; resp->has_vendor = true; - strlcpy(resp->vendor, "onekey.so", sizeof(resp->vendor)); + strlcpy(resp->vendor, "trezor.io", sizeof(resp->vendor)); resp->has_model = true; strlcpy(resp->model, "factory", sizeof(resp->model)); resp->major_version = VERSION_MAJOR; @@ -53,7 +53,7 @@ bool get_features(Features *resp) { #endif { resp->has_vendor = true; - strlcpy(resp->vendor, "onekey.so", sizeof(resp->vendor)); + strlcpy(resp->vendor, "trezor.io", sizeof(resp->vendor)); resp->major_version = VERSION_MAJOR; resp->minor_version = VERSION_MINOR; resp->patch_version = VERSION_PATCH;