summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/restore.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/restore.c b/src/restore.c
index e2f527f..8228a51 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -1969,6 +1969,13 @@ int restore_handle_data_request_msg(struct idevicerestore_client_t* client, idev
}
}
+ else if (!strcmp(type, "DeviceTree")) {
+ if (restore_send_component(restore, client, build_identity, "DeviceTree") < 0) {
+ error("ERROR: Unable to send DeviceTree\n");
+ return -1;
+ }
+ }
+
else if (!strcmp(type, "NORData")) {
if((client->flags & FLAG_EXCLUDE) == 0) {
if(restore_send_nor(restore, client, build_identity) < 0) {