summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-09-20 22:06:13 +0200
committerGravatar Martin Szulecki2012-11-07 22:21:24 +0100
commit85a62da6ab6f0181d746ea6d83cbd07aec3a7937 (patch)
tree2a4a8effdc98d907ea33662edcea46061bad9ae8 /src/idevicerestore.c
parent9770d4cd4a50e030b46610073ad9731d09eb2635 (diff)
downloadidevicerestore-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.c7
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");