diff options
author | Kenny Root <kroot@android.com> | 2013-09-25 19:14:59 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-09-25 19:14:59 +0200 |
commit | 58c60900ac3682fab08f64373bdd1020713b48f7 (patch) | |
tree | 47f9585d4cd72de8a3fb935d8e8387763ce3a9b1 /install.cpp | |
parent | Merge "Update libpng API usage" (diff) | |
parent | verifier: update to support certificates using SHA-256 (diff) | |
download | android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar.gz android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar.bz2 android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar.lz android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar.xz android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.tar.zst android_bootable_recovery-58c60900ac3682fab08f64373bdd1020713b48f7.zip |
Diffstat (limited to 'install.cpp')
-rw-r--r-- | install.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp index 0f3298f1d..0cb5cc7df 100644 --- a/install.cpp +++ b/install.cpp @@ -190,7 +190,7 @@ really_install_package(const char *path, int* wipe_cache) ui->Print("Opening update package...\n"); int numKeys; - RSAPublicKey* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys); + Certificate* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys); if (loadedKeys == NULL) { LOGE("Failed to load keys\n"); return INSTALL_CORRUPT; |