summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Benjamin BOURGEAIS2021-05-06 17:24:31 +0200
committerGravatar Benjamin BOURGEAIS2021-05-08 14:16:50 +0200
commit8355304866d2e7ead2680725c11d013712d7d19b (patch)
treefd32146e8b9db10291a1e4989bee24277d9facab
parent46b3fde00c3c1d895e6e289e236e92bb6c50e714 (diff)
downloadidevicerestore-8355304866d2e7ead2680725c11d013712d7d19b.tar.gz
idevicerestore-8355304866d2e7ead2680725c11d013712d7d19b.tar.bz2
Explicit the component path in the IPSW archive when extracting them
-rw-r--r--src/idevicerestore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index 0ec3af4..36b86b8 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -2322,7 +2322,7 @@ int extract_component(const char* ipsw, const char* path, unsigned char** compon
else
component_name = (char*) path;
- info("Extracting %s...\n", component_name);
+ info("Extracting %s (%s)...\n", component_name, path);
if (ipsw_extract_to_memory(ipsw, path, component_data, component_size) < 0) {
error("ERROR: Unable to extract %s from %s\n", component_name, ipsw);
return -1;