summaryrefslogtreecommitdiffstats
path: root/src/ipsw.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-07-17 01:37:42 +0200
committerGravatar Nikias Bassen2012-07-17 01:37:42 +0200
commit546e75e3ab6c27b0696da47c2b93dfbd5ea0c876 (patch)
treede57f4204c81d1a7e50de362fb5fd5238f0e6bed /src/ipsw.c
parent1174f8226b258cb778752e45d010285f6f6ff9fa (diff)
downloadidevicerestore-546e75e3ab6c27b0696da47c2b93dfbd5ea0c876.tar.gz
idevicerestore-546e75e3ab6c27b0696da47c2b93dfbd5ea0c876.tar.bz2
ipsw: change get_latest_fw to ipsw_get_latest_fw and make it public
Diffstat (limited to 'src/ipsw.c')
-rw-r--r--src/ipsw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipsw.c b/src/ipsw.c
index 7052e8c..4389c54 100644
--- a/src/ipsw.c
+++ b/src/ipsw.c
@@ -222,7 +222,7 @@ void ipsw_close(ipsw_archive* archive) {
}
}
-static int get_latest_fw(plist_t version_data, const char* product, char** fwurl, unsigned char* sha1buf)
+int ipsw_get_latest_fw(plist_t version_data, const char* product, char** fwurl, unsigned char* sha1buf)
{
*fwurl = NULL;
memset(sha1buf, '\0', 20);
@@ -394,7 +394,7 @@ int ipsw_download_latest_fw(plist_t version_data, const char* product, const cha
*ipswfile = NULL;
- if ((get_latest_fw(version_data, product, &fwurl, isha1) < 0) || !fwurl) {
+ if ((ipsw_get_latest_fw(version_data, product, &fwurl, isha1) < 0) || !fwurl) {
error("ERROR: can't get URL for latest firmware\n");
return -1;
}