diff options
author | Martin Szulecki | 2012-07-17 16:44:50 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-17 16:44:50 +0200 |
commit | 0a2668fae0ee7846309b1007515852917458d15c (patch) | |
tree | 6f347e5efc5eb698820f4cff824d4a847ab01b5b | |
parent | 5232e5a5a421aacbb46a9f59282262a7832fe00b (diff) | |
download | idevicerestore-0a2668fae0ee7846309b1007515852917458d15c.tar.gz idevicerestore-0a2668fae0ee7846309b1007515852917458d15c.tar.bz2 |
restore: Fix error messages for mdn signing
-rw-r--r-- | src/restore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/restore.c b/src/restore.c index 62e33f4..fde666d 100644 --- a/src/restore.c +++ b/src/restore.c @@ -807,7 +807,7 @@ static int restore_handle_trek_bbfw(const char* bbfwtmp, plist_t response, unsig // check for RestoreDBL-Blob in result plist_t restoredbl = plist_access_path(response, 2, "BasebandFirmware", "RestoreDBL-Blob"); if (!restoredbl || plist_get_node_type(restoredbl) != PLIST_DATA) { - error("ERROR: Could not find FlashPSI-Blob in Baseband TSS response\n"); + error("ERROR: Could not find RestoreDBL-Blob in Baseband TSS response\n"); return -1; } @@ -982,7 +982,7 @@ static int restore_handle_trek_bbfw(const char* bbfwtmp, plist_t response, unsig } if (zip_replace(za, zindex, zs) == -1) { - error("ERROR: could not add signed dbl.mbn to archive\n"); + error("ERROR: could not add signed restoredbl.mbn to archive\n"); goto leave; } restoredbl_index = zindex; @@ -1144,7 +1144,7 @@ static int restore_handle_trek_bbfw(const char* bbfwtmp, plist_t response, unsig } if (zip_replace(za, zindex, zs) == -1) { - error("ERROR: could not add signed dbl.mbn to archive\n"); + error("ERROR: could not add signed restoredbl.mbn to archive\n"); goto leave; } |