Skip to content

Commit

Permalink
ideviceactivation: Make sure to always perform drmHandshake for iOS >…
Browse files Browse the repository at this point in the history
…= 10
  • Loading branch information
nikias committed Jan 4, 2018
1 parent 8b2e167 commit 1db59f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ideviceactivation.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ int main(int argc, char *argv[])
if (use_mobileactivation) {
// create activation request from mobileactivation
plist_t ainfo = NULL;
if (mobileactivation_create_activation_info(ma, &ainfo) != MOBILEACTIVATION_E_SUCCESS) {
if ((product_version >= 0x0A0000) || (mobileactivation_create_activation_info(ma, &ainfo) != MOBILEACTIVATION_E_SUCCESS)) {
session_mode = 1;
}
mobileactivation_client_free(ma);
Expand Down

0 comments on commit 1db59f8

Please sign in to comment.