summaryrefslogtreecommitdiffstats
path: root/src/common.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-28 13:00:51 +0100
committerGravatar Martin Szulecki2014-10-28 13:00:51 +0100
commit53c0a9a6975a57b45ef7502d2f537c868ac379f7 (patch)
treef56a0af624d7a6c258300082291e35b7bf6f8f90 /src/common.c
parent3cd5ab609e368eacd08da80e8fad55ceb71b8c4b (diff)
downloadidevicerestore-53c0a9a6975a57b45ef7502d2f537c868ac379f7.tar.gz
idevicerestore-53c0a9a6975a57b45ef7502d2f537c868ac379f7.tar.bz2
Rename restore step to indicate flashing of firmware instead of NOR
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index 6451e07..e731d00 100644
--- a/src/common.c
+++ b/src/common.c
@@ -268,7 +268,7 @@ void idevicerestore_progress(struct idevicerestore_client_t* client, int step, d
client->progress_cb(step, progress, client->progress_cb_data);
} else {
// we don't want to be too verbose in regular idevicerestore.
- if ((step == RESTORE_STEP_UPLOAD_FS) || (step == RESTORE_STEP_FLASH_FS) || (step == RESTORE_STEP_FLASH_NOR)) {
+ if ((step == RESTORE_STEP_UPLOAD_FS) || (step == RESTORE_STEP_FLASH_FS) || (step == RESTORE_STEP_FLASH_FW)) {
print_progress_bar(100.0f * progress);
}
}