diff options
author | Martin Szulecki | 2013-11-20 12:49:38 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-11-20 13:21:04 +0100 |
commit | 4e2f579c646a26d1b54ad3f461c36bfdb44195ef (patch) | |
tree | 7d46d0bf5e5b2cdc9b4dd8b1d3a7ca422f852ff2 | |
parent | f838065c4059cce0e97282f7ce15ba97bec58252 (diff) | |
download | idevicerestore-4e2f579c646a26d1b54ad3f461c36bfdb44195ef.tar.gz idevicerestore-4e2f579c646a26d1b54ad3f461c36bfdb44195ef.tar.bz2 |
restore: Add error message for failed SEP firmware loading status
-rw-r--r-- | src/restore.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/restore.c b/src/restore.c index 2a550ed..b8b3c31 100644 --- a/src/restore.c +++ b/src/restore.c @@ -603,6 +603,9 @@ int restore_handle_status_msg(restored_client_t client, plist_t msg) { case 27: info("Status: Failed to mount filesystems.\n"); break; + case 51: + info("Status: Failed to load SEP Firmware.\n"); + break; case 1015: info("Status: X-Gold Baseband Update Failed. Defective Unit?\n"); break; |