diff options
author | Dees_Troy <dees_troy@teamw.in> | 2013-01-31 22:49:06 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@5.9.244.119> | 2013-01-31 22:49:06 +0100 |
commit | 7aa24ea80e56b5426b5df04f74e9f87f974ba0d7 (patch) | |
tree | e6fa5cae22e57e625b69142ea27fa098e8a85a22 | |
parent | Fix mkdosfs 2GB barrier (diff) | |
parent | Disable the forced MD5 check (diff) | |
download | android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar.gz android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar.bz2 android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar.lz android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar.xz android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.tar.zst android_bootable_recovery-7aa24ea80e56b5426b5df04f74e9f87f974ba0d7.zip |
Diffstat (limited to '')
-rw-r--r-- | twinstall.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/twinstall.cpp b/twinstall.cpp index 86a0979a3..40d715564 100644 --- a/twinstall.cpp +++ b/twinstall.cpp @@ -260,7 +260,7 @@ exit: } extern "C" int TWinstall_zip(const char* path, int* wipe_cache) { - int err, zip_verify, md5_return, md5_verify; + int err, zip_verify, md5_return; ui_print("Installing '%s'...\n", path); @@ -276,13 +276,7 @@ extern "C" int TWinstall_zip(const char* path, int* wipe_cache) { LOGE("Zip MD5 does not match.\nUnable to install zip.\n"); return INSTALL_CORRUPT; } else if (md5_return == -1) { - DataManager::GetValue(TW_FORCE_MD5_CHECK_VAR, md5_verify); - if (md5_verify == 1) { - // Forced MD5 checking is on and no MD5 file found. - LOGE("No MD5 file found for '%s'.\nDisable force MD5 check to avoid this error.\n", path); - return INSTALL_CORRUPT; - } else - ui_print("Skipping MD5 check: no MD5 file found.\n"); + ui_print("Skipping MD5 check: no MD5 file found.\n"); } else if (md5_return == 1) ui_print("Zip MD5 matched.\n"); // MD5 found and matched. |