diff options
author | Tao Bao <tbao@google.com> | 2015-10-23 20:37:33 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-10-23 20:37:33 +0200 |
commit | f204185f7138687769f95c28fe22fa88143bc004 (patch) | |
tree | 5a680dee2ed5945b9bd35154dfc196b0a830808a /updater/blockimg.cpp | |
parent | Merge "Error correction: Use libfec in blockimg.cpp for recovery" (diff) | |
parent | updater: Bump up the BBOTA version to 4. (diff) | |
download | android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar.gz android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar.bz2 android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar.lz android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar.xz android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.tar.zst android_bootable_recovery-f204185f7138687769f95c28fe22fa88143bc004.zip |
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r-- | updater/blockimg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 4a813b1d8..dd6cf0d96 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -1374,7 +1374,7 @@ static Value* PerformBlockImageUpdate(const char* name, State* state, int /* arg std::vector<std::string> lines = android::base::Split(transfer_list, "\n"); // First line in transfer list is the version number - if (!android::base::ParseInt(lines[0].c_str(), ¶ms.version, 1, 3)) { + if (!android::base::ParseInt(lines[0].c_str(), ¶ms.version, 1, 4)) { fprintf(stderr, "unexpected transfer list version [%s]\n", lines[0].c_str()); return StringValue(strdup("")); } |