summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-05-07 06:25:56 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-07 06:25:56 +0200
commit3257155e8957b8cba4b59d7928990f1642183415 (patch)
treed7c35f13c6ace0875a8f43804b3c9499749e9779 /recovery.cpp
parentam 7ff339ea: Merge "uncrypt: Switch to C++" (diff)
parentMerge "Add an alternate screen for viewing recovery logs." (diff)
downloadandroid_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar.gz
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar.bz2
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar.lz
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar.xz
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.tar.zst
android_bootable_recovery-3257155e8957b8cba4b59d7928990f1642183415.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 2c78bafac..80a8c7ba5 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -701,12 +701,11 @@ static bool wipe_cache(bool should_confirm, Device* device) {
}
static void choose_recovery_file(Device* device) {
- // "Go back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
- char* entries[KEEP_LOG_COUNT * 2 + 2];
+ // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
+ char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
memset(entries, 0, sizeof(entries));
unsigned int n = 0;
- entries[n++] = strdup("Go back");
// Add LAST_LOG_FILE + LAST_LOG_FILE.x
// Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
@@ -734,11 +733,13 @@ static void choose_recovery_file(Device* device) {
}
}
+ entries[n++] = strdup("Back");
+
const char* headers[] = { "Select file to view", nullptr };
while (true) {
int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
- if (chosen_item == 0) break;
+ if (strcmp(entries[chosen_item], "Back") == 0) break;
// TODO: do we need to redirect? ShowFile could just avoid writing to stdio.
redirect_stdio("/dev/null");