summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-11-20 11:29:42 +0100
committerGravatar Martin Szulecki2013-11-20 11:39:38 +0100
commit4275de9e60adc7a96ff2de3add76e2d9d603014f (patch)
tree96541714960474facd844764ec2876e871f06dae
parente44eb6beacb1d9519e1bf4a5fdc2203ffcd243f7 (diff)
downloadidevicerestore-4275de9e60adc7a96ff2de3add76e2d9d603014f.tar.gz
idevicerestore-4275de9e60adc7a96ff2de3add76e2d9d603014f.tar.bz2
idevicerestore: Use new helper to add common tags to TSS request
-rw-r--r--src/idevicerestore.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index 6eb25a9..21aedfb 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -1436,6 +1436,14 @@ int get_tss_response(struct idevicerestore_client_t* client, plist_t build_ident
return -1;
}
+ /* add common tags from manifest */
+ if (tss_request_add_common_tags_from_manifest(request, build_identity, NULL) < 0) {
+ error("ERROR: Unable to add common tags to TSS request\n");
+ plist_free(request);
+ plist_free(parameters);
+ return -1;
+ }
+
/* add tags from manifest */
if (tss_request_add_ap_tags_from_manifest(request, build_identity, NULL) < 0) {
error("ERROR: Unable to create TSS request\n");