diff options
author | Doug Zongker <dougz@android.com> | 2009-06-18 02:29:40 +0200 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-06-18 03:12:16 +0200 |
commit | fb2e3af3f915c0e3f2b4b027ef26777267ad46dc (patch) | |
tree | 45e7354eacc638f4176a095844258d1f313aba7b /updater | |
parent | add less_than_int, greater_than_int to edify (diff) | |
download | android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar.gz android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar.bz2 android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar.lz android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar.xz android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.tar.zst android_bootable_recovery-fb2e3af3f915c0e3f2b4b027ef26777267ad46dc.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/updater.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/updater/updater.c b/updater/updater.c index 5a2ed2ccf..31d93ae96 100644 --- a/updater/updater.c +++ b/updater/updater.c @@ -34,9 +34,10 @@ int main(int argc, char** argv) { } char* version = argv[1]; - if (version[0] != '1' || version[1] != '\0') { - fprintf(stderr, "wrong updater binary API; expected 1, got %s\n", - version); + if ((version[0] != '1' && version[0] != '2') || version[1] != '\0') { + // We support version "1" or "2". + fprintf(stderr, "wrong updater binary API; expected 1 or 2, got %s\n", + argv[1]); return 2; } |