diff options
author | Nikias Bassen | 2016-07-08 20:53:48 +0200 |
---|---|---|
committer | Nikias Bassen | 2016-07-08 20:53:48 +0200 |
commit | 535f4b653efeed2428df49d6915332faadde348c (patch) | |
tree | d77327455a2d20d8976d823e26dedaab976a774c /src | |
parent | 2f92d5555302a00a5a10154d8413235888d27c7f (diff) | |
download | idevicerestore-535f4b653efeed2428df49d6915332faadde348c.tar.gz idevicerestore-535f4b653efeed2428df49d6915332faadde348c.tar.bz2 |
restore: Fix error message to show the actual baseband component name
Diffstat (limited to 'src')
-rw-r--r-- | src/restore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/restore.c b/src/restore.c index 4418660..fd7be92 100644 --- a/src/restore.c +++ b/src/restore.c @@ -1236,12 +1236,12 @@ static int restore_sign_bbfw(const char* bbfwtmp, plist_t bbtss, const unsigned if (is_fls) { if (fls_update_sig_blob(fls, blob, (unsigned int)blob_size) != 0) { - error("ERROR: could not sign psi_ram.fls\n"); + error("ERROR: could not sign %s\n", signfn); goto leave; } } else { if (mbn_update_sig_blob(mbn, blob, (unsigned int)blob_size) != 0) { - error("ERROR: could not sign dbl.mbn\n"); + error("ERROR: could not sign %s\n", signfn); goto leave; } } |