chiark / gitweb /
tmpfiles: fix compilation without acl support
[elogind.git] / src / tmpfiles / tmpfiles.c
index 443851a8aa8b48975f3c30cd1bd46e747288dfc1..c948d4d218b7cd42ac2d6125f2da3c010c892d46 100644 (file)
@@ -630,7 +630,7 @@ static int get_xattrs_from_arg(Item *i) {
 
         while ((r = unquote_first_word(&p, &xattr, false)) > 0) {
                 _cleanup_free_ char *tmp = NULL, *name = NULL,
-                        *value = NULL, *value2 = NULL;
+                        *value = NULL, *value2 = NULL, *_xattr = xattr;
 
                 r = split_pair(xattr, "=", &name, &value);
                 if (r < 0) {
@@ -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