diff options
author | 2016-06-26 18:09:26 +0200 | |
---|---|---|
committer | 2016-06-26 18:09:26 +0200 | |
commit | dd20797c1c75b13affdd2df955c897c06755edf0 (patch) | |
tree | ccc6aee6f145b09ab0cc1cd2a9cb9e263524aca2 /src/idevicerestore.c | |
parent | e4cd7225dc002cbdba664a892ae7e5f4427e6a72 (diff) | |
download | idevicerestore-dd20797c1c75b13affdd2df955c897c06755edf0.tar.gz idevicerestore-dd20797c1c75b13affdd2df955c897c06755edf0.tar.bz2 |
ipsw: Add ipsw_extract_to_file_with_progress() and remove progress bar from ipsw_extract_to_file()
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 5263c76..43904e5 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -728,7 +728,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client) // Extract filesystem from IPSW info("Extracting filesystem from IPSW\n"); - if (ipsw_extract_to_file(client->ipsw, fsname, filesystem) < 0) { + if (ipsw_extract_to_file_with_progress(client->ipsw, fsname, filesystem, 1) < 0) { error("ERROR: Unable to extract filesystem from IPSW\n"); if (client->tss) plist_free(client->tss); |