summaryrefslogtreecommitdiffstats
path: root/src/ipsw.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-07-17 16:21:18 +0200
committerGravatar Nikias Bassen2012-07-17 16:21:18 +0200
commit190a6b04c4f12ee20e7ae86cc3f280c63c2503f6 (patch)
tree51ada07ebf425d79b730e690763cd36902741a8f /src/ipsw.c
parent603f4cfca644c3afc75a4615f4b837e0bc6f3abf (diff)
downloadidevicerestore-190a6b04c4f12ee20e7ae86cc3f280c63c2503f6.tar.gz
idevicerestore-190a6b04c4f12ee20e7ae86cc3f280c63c2503f6.tar.bz2
Limit when downloading should show progress and when not
Diffstat (limited to 'src/ipsw.c')
-rw-r--r--src/ipsw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipsw.c b/src/ipsw.c
index 19f73ab..82abbda 100644
--- a/src/ipsw.c
+++ b/src/ipsw.c
@@ -449,7 +449,7 @@ int ipsw_download_latest_fw(plist_t version_data, const char* product, const cha
} else {
remove(fwlfn);
info("Downloading latest firmware (%s)\n", fwurl);
- download_to_file(fwurl, fwlfn);
+ download_to_file(fwurl, fwlfn, 1);
if (memcmp(isha1, zsha1, 20) != 0) {
info("\nVerifying '%s'...\n", fwlfn);
FILE* f = fopen(fwlfn, "rb");