summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-06-08 19:40:11 +0200
committerGravatar Nikias Bassen2017-06-08 19:40:11 +0200
commit1a8921f7d6c89530c3418703574af9083039d4d5 (patch)
tree3b6a367ef7a445933f1113c667a6af5c55b85df8
parent1f3aff87554ccb365da6b3755fa5bc6f43a255e8 (diff)
downloadidevicerestore-1a8921f7d6c89530c3418703574af9083039d4d5.tar.gz
idevicerestore-1a8921f7d6c89530c3418703574af9083039d4d5.tar.bz2
ipsw: Suppress (misleading) error message when a requested file is not found in archive
-rw-r--r--src/ipsw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipsw.c b/src/ipsw.c
index a0ed824..5b0a350 100644
--- a/src/ipsw.c
+++ b/src/ipsw.c
@@ -191,7 +191,7 @@ int ipsw_extract_to_memory(const char* ipsw, const char* infile, unsigned char**
int zindex = zip_name_locate(archive->zip, infile, 0);
if (zindex < 0) {
- error("ERROR: zip_name_locate: %s\n", infile);
+ debug("NOTE: zip_name_locate: '%s' not found in archive.\n", infile);
return -1;
}