summaryrefslogtreecommitdiffstats
path: root/minzip/DirUtil.h
diff options
context:
space:
mode:
authorKenny Root <kroot@android.com>2012-03-31 00:53:17 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2012-03-31 00:53:17 +0200
commit0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803 (patch)
tree46aacb687e7126a5a64949dd7ade2f284ee57c15 /minzip/DirUtil.h
parentam 37d0f260: Reconcile with ics-mr1-release (diff)
parentMerge changes Ied379f26,I09fb9d56 (diff)
downloadandroid_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar.gz
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar.bz2
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar.lz
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar.xz
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.tar.zst
android_bootable_recovery-0b1fee1b2aa7da86ffdabfe4c577ee8adb93d803.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 5d881f562..1f378b75c 100644
--- a/minzip/DirUtil.h
+++ b/minzip/DirUtil.h
@@ -20,6 +20,13 @@
#include <stdbool.h>
#include <utime.h>
+#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
@@ -34,7 +41,8 @@
* (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>
*/