AU: Remove support for old-style updates.
This code is basically untested, unused and a security risk. So, remove...
BUG=chromium-os:12542
TEST=unit tests, tested VM update
Change-Id: Ibed0582b09497acef9debdf88658cddc2b5cecce
Reviewed-on: http://gerrit.chromium.org/gerrit/8728
Tested-by: Darin Petkov <petkov@chromium.org>
Reviewed-by: Andrew de los Reyes <adlr@chromium.org>
Commit-Ready: Darin Petkov <petkov@chromium.org>
diff --git a/delta_performer.cc b/delta_performer.cc
index fa35ce8..0e49df7 100644
--- a/delta_performer.cc
+++ b/delta_performer.cc
@@ -606,11 +606,11 @@
const string& download_hash_data = hash_calculator_.hash();
TEST_AND_RETURN_VAL(kActionCodeDownloadPayloadVerificationError,
!download_hash_data.empty());
- TEST_AND_RETURN_VAL(kActionCodeDownloadPayloadVerificationError,
+ TEST_AND_RETURN_VAL(kActionCodeDownloadHashMismatchError,
download_hash_data == update_check_response_hash);
// Verifies the download size.
- TEST_AND_RETURN_VAL(kActionCodeDownloadPayloadVerificationError,
+ TEST_AND_RETURN_VAL(kActionCodeDownloadSizeMismatchError,
update_check_response_size ==
manifest_metadata_size_ + buffer_offset_);