diff options
author | Martin Szulecki | 2012-09-20 21:59:47 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-11-07 22:20:14 +0100 |
commit | bce83dc6c6802054960ab02c159e492222991a86 (patch) | |
tree | a9b4ce42ce7e2fa23b8420186672d05bde26ea9c | |
parent | f4bdd1ce22061638240fb56ec73eb90c95c7dbcd (diff) | |
download | idevicerestore-bce83dc6c6802054960ab02c159e492222991a86.tar.gz idevicerestore-bce83dc6c6802054960ab02c159e492222991a86.tar.bz2 |
Do not report that we do signing if we don't know yet
-rw-r--r-- | src/dfu.c | 3 | ||||
-rw-r--r-- | src/recovery.c | 3 |
2 files changed, 0 insertions, 6 deletions
@@ -152,9 +152,6 @@ int dfu_send_component(struct idevicerestore_client_t* client, plist_t build_ide } } - if (client->tss) - info("%s will be signed\n", component); - if (ipsw_get_component_by_path(client->ipsw, client->tss, component, path, &data, &size) < 0) { error("ERROR: Unable to get component: %s\n", component); free(path); diff --git a/src/recovery.c b/src/recovery.c index eebb4df..30532f8 100644 --- a/src/recovery.c +++ b/src/recovery.c @@ -259,9 +259,6 @@ int recovery_send_component(struct idevicerestore_client_t* client, plist_t buil } } - if (client->tss) - info("%s will be signed\n", component); - if (ipsw_get_component_by_path(client->ipsw, client->tss, component, path, &data, &size) < 0) { error("ERROR: Unable to get component: %s\n", component); free(path); |