diff options
author | Dees Troy <dees_troy@teamw.in> | 2013-09-12 16:10:01 +0200 |
---|---|---|
committer | Gerrit Code Review <gerrit@198.50.184.117> | 2013-09-12 16:10:01 +0200 |
commit | 237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb (patch) | |
tree | 0dc7a60c35e489394f8d53ef47d6125685d21f76 | |
parent | Merge "Hack-fix build with different system/core/charger versions" into twrp2.7 (diff) | |
parent | print out md5s to recovery.log (diff) | |
download | android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar.gz android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar.bz2 android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar.lz android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar.xz android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.tar.zst android_bootable_recovery-237b83b54c1812e9c9ccc2aab09ddc4dbc8a49bb.zip |
Diffstat (limited to '')
-rw-r--r-- | twrpDigest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/twrpDigest.cpp b/twrpDigest.cpp index ce3d87cca..e888d8561 100644 --- a/twrpDigest.cpp +++ b/twrpDigest.cpp @@ -43,6 +43,7 @@ extern "C" #include "variables.h" #include "twrp-functions.hpp" #include "twrpDigest.hpp" +#include "twcommon.h" using namespace std; @@ -82,6 +83,7 @@ int twrpDigest::write_md5digest(void) { md5string += basename((char*) md5fn.c_str()); md5string += + "\n"; TWFunc::write_file(md5file, md5string); + LOGINFO("MD5 for %s: %s\n", md5fn.c_str(), md5string.c_str()); return 0; } |