From b55d215c25fd415b49430dc3c8423dde7d8f12aa Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 11 Mar 2024 15:20:02 +0100 Subject: win32: Skip ecid check for KIS mode device in win32_open_with_ecid --- src/libirecovery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libirecovery.c b/src/libirecovery.c index 29bffd0..7d6c46c 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -1256,7 +1256,7 @@ static irecv_error_t win32_open_with_ecid(irecv_client_t* client, uint64_t ecid) irecv_load_device_info_from_iboot_string(_client, serial_str); } - if (ecid != 0) { + if (ecid != 0 && _client->mode != KIS_PRODUCT_ID) { if (_client->device_info.ecid != ecid) { CloseHandle(_client->handle); continue; -- cgit v1.1-32-gdbae