Merge "Change StringValue to use std::string"
diff --git a/etc/init.rc b/etc/init.rc
index 29b088d..b1473ba 100644
--- a/etc/init.rc
+++ b/etc/init.rc
@@ -5,7 +5,6 @@
restorecon /postinstall
start ueventd
- start healthd
on init
export ANDROID_ROOT /system
diff --git a/install.cpp b/install.cpp
index 427bea1..72c922d 100644
--- a/install.cpp
+++ b/install.cpp
@@ -377,8 +377,8 @@
std::string uncrypt_status;
if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) {
PLOG(WARNING) << "failed to read uncrypt status";
- } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_:")) {
- PLOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
+ } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) {
+ LOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
} else {
log_buffer.push_back(android::base::Trim(uncrypt_status));
}