summaryrefslogtreecommitdiffstats
path: root/src/common.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2016-06-26 18:30:04 +0200
committerGravatar Nikias Bassen2016-06-26 18:30:04 +0200
commit3e8651102df3a694c8e88a73b8d8d753f8d760c6 (patch)
tree0b39ea661fb162c036cf2418b8e74124a57b1fdf /src/common.c
parentab7af5c54f7294a59b6be267d2be54469a26b778 (diff)
downloadidevicerestore-3e8651102df3a694c8e88a73b8d8d753f8d760c6.tar.gz
idevicerestore-3e8651102df3a694c8e88a73b8d8d753f8d760c6.tar.bz2
restore: Fix restore mode status/progress messages
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 a36d222..691137d 100644
--- a/src/common.c
+++ b/src/common.c
@@ -277,7 +277,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_FW)) {
+ if ((step == RESTORE_STEP_UPLOAD_FS) || (step == RESTORE_STEP_VERIFY_FS) || (step == RESTORE_STEP_FLASH_FW)) {
print_progress_bar(100.0f * progress);
}
}