summaryrefslogtreecommitdiffstats
path: root/crypto/ext4crypt/Ext4CryptPie.cpp
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2019-08-28 02:50:31 +0200
committerbigbiff bigbiff <bigbiff@teamw.in>2019-09-01 19:38:44 +0200
commit0be03b3217cc60944b60f6ba65dabcffd411e138 (patch)
tree736d01729b3eb12755c59ed244102d9e0d247037 /crypto/ext4crypt/Ext4CryptPie.cpp
parentext4crypt: change to upgrade key if export fails (diff)
downloadandroid_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar.gz
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar.bz2
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar.lz
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar.xz
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.tar.zst
android_bootable_recovery-0be03b3217cc60944b60f6ba65dabcffd411e138.zip
Diffstat (limited to 'crypto/ext4crypt/Ext4CryptPie.cpp')
-rw-r--r--crypto/ext4crypt/Ext4CryptPie.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ext4crypt/Ext4CryptPie.cpp b/crypto/ext4crypt/Ext4CryptPie.cpp
index d76ca2455..548e4e445 100644
--- a/crypto/ext4crypt/Ext4CryptPie.cpp
+++ b/crypto/ext4crypt/Ext4CryptPie.cpp
@@ -208,11 +208,11 @@ static bool read_and_fixate_user_ce_key(userid_t user_id,
}
static bool is_wrapped_key_supported_common(const std::string& mount_point) {
- LOG(DEBUG) << "Determining wrapped-key support for " << mount_point;
+ LOG(DEBUG) << "Determining wrapped-key support for " << mount_point << std::endl;
std::string wrapped_key_supported = android::base::GetProperty("fbe.data.wrappedkey", "false");
- LOG(DEBUG) << "fbe.data.wrappedkey = " << wrapped_key_supported;
+ LOG(DEBUG) << "fbe.data.wrappedkey = " << wrapped_key_supported << std::endl;
if (mount_point == DATA_MNT_POINT && wrapped_key_supported == "true") {
- LOG(DEBUG) << "Wrapped key supported on " << mount_point;
+ LOG(DEBUG) << "Wrapped key supported on " << mount_point << std::endl;
return true;
} else {
return false;