diff options
author | Nikias Bassen | 2017-06-08 19:40:11 +0200 |
---|---|---|
committer | Nikias Bassen | 2017-06-08 19:40:11 +0200 |
commit | 1a8921f7d6c89530c3418703574af9083039d4d5 (patch) | |
tree | 3b6a367ef7a445933f1113c667a6af5c55b85df8 | |
parent | 1f3aff87554ccb365da6b3755fa5bc6f43a255e8 (diff) | |
download | idevicerestore-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |