summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-04-12 00:02:46 +0200
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-04-12 00:02:46 +0200
commitc7a6858dc9d4e75c9c889890902141c4243228a7 (patch)
tree925c40d53373f1f7afa08a39090441bba463ab08 /install.cpp
parentam 4e21482d: Add liblog (diff)
parentverifier: update to support certificates using SHA-256 (diff)
downloadandroid_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.gz
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.bz2
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.lz
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.xz
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.zst
android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
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;