summaryrefslogtreecommitdiffstats
path: root/minzip/DirUtil.h
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2012-03-31 05:48:34 +0200
committerKenny Root <kroot@google.com>2012-03-31 06:26:01 +0200
commit41dda82d847ae8c261b09c383806b412d680f935 (patch)
tree98edeec4fa5d9df2d0104624d66b1608cecdaf50 /minzip/DirUtil.h
parentMerge "fail edify script if set_perm() or symlink() fails" (diff)
parentam 155cd3c1: Merge changes Ied379f26,I09fb9d56 (diff)
downloadandroid_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.gz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.bz2
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.lz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.xz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.zst
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.zip
Diffstat (limited to 'minzip/DirUtil.h')
-rw-r--r--minzip/DirUtil.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/minzip/DirUtil.h b/minzip/DirUtil.h
index 0d5ea7ccb..f8be64026 100644
--- a/minzip/DirUtil.h
+++ b/minzip/DirUtil.h
@@ -24,6 +24,13 @@
extern "C" {
#endif
+#ifdef HAVE_SELINUX
+#include <selinux/selinux.h>
+#include <selinux/label.h>
+#else
+struct selabel_handle;
+#endif
+
/* Like "mkdir -p", try to guarantee that all directories
* specified in path are present, creating as many directories
* as necessary. The specified mode is passed to all mkdir
@@ -38,7 +45,8 @@ extern "C" {
* (usually if some element of path is not a directory).
*/
int dirCreateHierarchy(const char *path, int mode,
- const struct utimbuf *timestamp, bool stripFileName);
+ const struct utimbuf *timestamp, bool stripFileName,
+ struct selabel_handle* sehnd);
/* rm -rf <path>
*/