diff options
| author | 2010-07-09 16:47:42 +0200 | |
|---|---|---|
| committer | 2010-07-09 16:47:42 +0200 | |
| commit | 77576d1848d6be1d73f0f860d6a4f350536f75bd (patch) | |
| tree | e4332a2863b65dcd737c8adefc7a495b31697d10 /src | |
| parent | 515f26d28667b4790a4c1db1126f68b015ed1bce (diff) | |
| download | idevicerestore-77576d1848d6be1d73f0f860d6a4f350536f75bd.tar.gz idevicerestore-77576d1848d6be1d73f0f860d6a4f350536f75bd.tar.bz2 | |
Refactor filesystem extraction
Diffstat (limited to 'src')
| -rw-r--r-- | src/idevicerestore.c | 4 | ||||
| -rw-r--r-- | src/idevicerestore.h | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 6b3dee4..9b0b98e 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -212,7 +212,7 @@ int main(int argc, char* argv[]) {  	// Extract filesystem from IPSW and return its name  	char* filesystem = NULL; -	if (extract_filesystem(client, client->ipsw, build_identity, &filesystem) < 0) { +	if (ipsw_extract_filesystem(client->ipsw, buildidentity, &filesystem) < 0) {  		error("ERROR: Unable to extract filesystem from IPSW\n");  		if (client->tss)  			plist_free(client->tss); @@ -541,7 +541,7 @@ int get_build_count(plist_t buildmanifest) {  	return plist_array_get_size(build_identities_array);  } -int extract_filesystem(struct idevicerestore_client_t* client, const char* ipsw, plist_t build_identity, char** filesystem) { +int ipsw_extract_filesystem(const char* ipsw, plist_t build_identity, char** filesystem) {  	char* filename = NULL;  	if (build_identity_get_component_path(build_identity, "OS", &filename) < 0) { diff --git a/src/idevicerestore.h b/src/idevicerestore.h index 27128a7..47482d7 100644 --- a/src/idevicerestore.h +++ b/src/idevicerestore.h @@ -40,11 +40,11 @@ int get_bdid(struct idevicerestore_client_t* client, uint32_t* bdid);  int get_cpid(struct idevicerestore_client_t* client, uint32_t* cpid);  plist_t get_build_identity(struct idevicerestore_client_t* client, plist_t buildmanifest, uint32_t identity);  int get_shsh_blobs(struct idevicerestore_client_t* client, uint64_t ecid, plist_t build_identity, plist_t* tss); -int extract_filesystem(struct idevicerestore_client_t* client, const char* ipsw, plist_t buildmanifest, char** filesystem);  int ipsw_get_component_by_path(const char* ipsw, plist_t tss, const char* path, char** data, uint32_t* size);  void build_manifest_print_information(plist_t build_manifest);  void build_identity_print_information(plist_t build_identity);  int build_identity_get_component_path(plist_t build_identity, const char* component, char** path); +int ipsw_extract_filesystem(const char* ipsw, plist_t build_identity, char** filesystem);  #ifdef __cplusplus  } | 
