Skip to content

Commit

Permalink
irecv_open_with_ecid: Print correct ECID for KIS devices
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed Jan 9, 2024
1 parent 33bdb73 commit 63ea45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libirecovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ irecv_error_t irecv_open_with_ecid(irecv_client_t* pclient, uint64_t ecid)
irecv_close(client);
return IRECV_E_NO_DEVICE; //wrong device
}
debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid);
debug("found device with ECID %016" PRIx64 "\n", (uint64_t)client->device_info.ecid);
} else {
irecv_copy_nonce_with_tag(client, "NONC", &client->device_info.ap_nonce, &client->device_info.ap_nonce_size);
irecv_copy_nonce_with_tag(client, "SNON", &client->device_info.sep_nonce, &client->device_info.sep_nonce_size);
Expand Down

0 comments on commit 63ea45b

Please sign in to comment.