summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2013-12-02 19:23:19 +0100
committerGravatar Nikias Bassen2013-12-02 19:23:19 +0100
commit24462e8192a365deb826dc542c200caa7c4a67f5 (patch)
treeaaeb355e76733c4699adf3d16f873356e9eb00ca
parent3eaa1a86cd41a385f0ca62e7f2a297454dd32e22 (diff)
downloadidevicerestore-24462e8192a365deb826dc542c200caa7c4a67f5.tar.gz
idevicerestore-24462e8192a365deb826dc542c200caa7c4a67f5.tar.bz2
respect --cache-path when using --latest
-rw-r--r--src/idevicerestore.c2
-rw-r--r--src/ipsw.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index f89f772..ef547eb 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -307,7 +307,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client)
if (client->flags & FLAG_LATEST) {
char* ipsw = NULL;
- int res = ipsw_download_latest_fw(client->version_data, client->device->product_type, "cache", &ipsw);
+ int res = ipsw_download_latest_fw(client->version_data, client->device->product_type, client->cache_dir, &ipsw);
if (res != 0) {
if (ipsw) {
free(ipsw);
diff --git a/src/ipsw.c b/src/ipsw.c
index 101c28a..9f24784 100644
--- a/src/ipsw.c
+++ b/src/ipsw.c
@@ -435,7 +435,11 @@ int ipsw_download_latest_fw(plist_t version_data, const char* product, const cha
info("Latest firmware is %s\n", fwfn);
char fwlfn[256];
- sprintf(fwlfn, "%s/%s", todir, fwfn);
+ if (todir) {
+ sprintf(fwlfn, "%s/%s", todir, fwfn);
+ } else {
+ sprintf(fwlfn, "%s", fwfn);
+ }
char fwlock[256];
sprintf(fwlock, "%s.lock", fwlfn);