summaryrefslogtreecommitdiffstats
path: root/twrpTar.cpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-12-22 04:54:00 +0100
committerDees Troy <dees_troy@teamw.in>2014-12-22 04:55:24 +0100
commit960f030b4163e71c63b251250659718655edcac1 (patch)
treeb32474605878f4c2c8c232dfe3058ee2f4afa57a /twrpTar.cpp
parentFix else if and maxFileSize initializer. (diff)
downloadandroid_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar.gz
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar.bz2
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar.lz
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar.xz
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.tar.zst
android_bootable_recovery-960f030b4163e71c63b251250659718655edcac1.zip
Diffstat (limited to 'twrpTar.cpp')
-rw-r--r--twrpTar.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/twrpTar.cpp b/twrpTar.cpp
index 968b6b9e7..7f057df98 100644
--- a/twrpTar.cpp
+++ b/twrpTar.cpp
@@ -44,6 +44,9 @@ extern "C" {
#ifndef BUILD_TWRPTAR_MAIN
#include "data.hpp"
#include "infomanager.hpp"
+extern "C" {
+ #include "set_metadata.h"
+}
#endif //ndef BUILD_TWRPTAR_MAIN
using namespace std;
@@ -1243,7 +1246,9 @@ int twrpTar::closeTar() {
LOGERR("Backup file size for '%s' is 0 bytes.\n", tarfn.c_str());
return -1;
}
+#ifndef BUILD_TWRPTAR_MAIN
tw_set_default_metadata(tarfn.c_str());
+#endif
return 0;
}