From 0a2668fae0ee7846309b1007515852917458d15c Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 17 Jul 2012 16:44:50 +0200 Subject: restore: Fix error messages for mdn signing --- src/restore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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; } -- cgit v1.1-32-gdbae