diff options
author | Tao Bao <tbao@google.com> | 2016-12-14 06:25:00 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-12-14 06:25:00 +0100 |
commit | af62097c08d089b4bca4ff667fcbde3793033ed2 (patch) | |
tree | 4a635a9169e1418d05244173870768e4dab9682e /uncrypt/uncrypt.cpp | |
parent | Merge "recovery: Clean up the log saving while wiping." (diff) | |
parent | Merge "Add tests for setup-bcb and clear-bcb via uncrypt." (diff) | |
download | android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar.gz android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar.bz2 android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar.lz android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar.xz android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.tar.zst android_bootable_recovery-af62097c08d089b4bca4ff667fcbde3793033ed2.zip |
Diffstat (limited to '')
-rw-r--r-- | uncrypt/uncrypt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp index 38b25abc7..4ac516d21 100644 --- a/uncrypt/uncrypt.cpp +++ b/uncrypt/uncrypt.cpp @@ -530,7 +530,7 @@ static bool setup_bcb(const int socket) { std::string content; content.resize(length); if (!android::base::ReadFully(socket, &content[0], length)) { - PLOG(ERROR) << "failed to read the length"; + PLOG(ERROR) << "failed to read the message"; return false; } LOG(INFO) << " received command: [" << content << "] (" << content.size() << ")"; |