diff options
author | Martin Szulecki | 2012-09-20 22:06:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-11-07 22:21:24 +0100 |
commit | 85a62da6ab6f0181d746ea6d83cbd07aec3a7937 (patch) | |
tree | 2a4a8effdc98d907ea33662edcea46061bad9ae8 /src/idevicerestore.c | |
parent | 9770d4cd4a50e030b46610073ad9731d09eb2635 (diff) | |
download | idevicerestore-85a62da6ab6f0181d746ea6d83cbd07aec3a7937.tar.gz idevicerestore-85a62da6ab6f0181d746ea6d83cbd07aec3a7937.tar.bz2 |
idevicerestore: Send ApTicket if applicable before iBEC
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 3ed0f7e..0749fe0 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -741,6 +741,13 @@ int idevicerestore_start(struct idevicerestore_client_t* client) if (client->mode->index == MODE_DFU) { client->mode = &idevicerestore_modes[MODE_RECOVERY]; } else { + if ((client->build_major > 8) && !(client->flags & FLAG_CUSTOM)) { + /* send ApTicket */ + if (recovery_send_ticket(client) < 0) { + error("WARNING: Unable to send APTicket\n"); + } + } + /* now we load the iBEC */ if (recovery_send_ibec(client, build_identity) < 0) { error("ERROR: Unable to send iBEC\n"); |