diff options
| author | 2010-07-09 16:35:17 +0200 | |
|---|---|---|
| committer | 2010-07-09 16:35:17 +0200 | |
| commit | bfcd784574ace78f9923213e3d260302d28b54c8 (patch) | |
| tree | 26c6f91d1add193cbb5fac33338b6113a8879f00 /src/idevicerestore.c | |
| parent | d80d5b462061022fac7e1a57d6a05c54499e042d (diff) | |
| download | idevicerestore-bfcd784574ace78f9923213e3d260302d28b54c8.tar.gz idevicerestore-bfcd784574ace78f9923213e3d260302d28b54c8.tar.bz2 | |
Refactor manifest extraction
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 dde163d..6b3dee4 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -149,7 +149,7 @@ int main(int argc, char* argv[]) {  	// extract buildmanifest  	plist_t buildmanifest = NULL;  	info("Extracting BuildManifest from IPSW\n"); -	if (extract_buildmanifest(client, ipsw, &buildmanifest) < 0) { +	if (ipsw_extract_build_manifest(ipsw, &buildmanifest) < 0) {  		error("ERROR: Unable to extract BuildManifest from %s\n", ipsw);  		return -1;  	} | 
