summaryrefslogtreecommitdiff
path: root/src/tmpfiles/tmpfiles.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-02-02 20:28:39 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-02-03 21:28:46 -0500
commit35888b67f77fa7a5cae0973403cb97aa30cad70c (patch)
treeb9a3333bfede9b38f350380340de9c84fc2a9cab /src/tmpfiles/tmpfiles.c
parent320814811417146cfa1e416f69f1101eed630c36 (diff)
tmpfiles: fix compilation without acl support
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r--src/tmpfiles/tmpfiles.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index 96b1fb4d3f..c948d4d218 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -698,6 +698,7 @@ static int get_acls_from_arg(Item *item) {
return 0;
}
+#ifdef HAVE_ACL
static int path_set_acl(const char *path, acl_type_t type, acl_t acl, bool modify) {
_cleanup_(acl_freep) acl_t dup = NULL;
int r;
@@ -736,6 +737,7 @@ static int path_set_acl(const char *path, acl_type_t type, acl_t acl, bool modif
strna(t), path);
return 0;
}
+#endif
static int path_set_acls(Item *item, const char *path) {
#ifdef HAVE_ACL