]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: fix compilation without acl support
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 3 Feb 2015 01:28:39 +0000 (20:28 -0500)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 4 Feb 2015 02:28:46 +0000 (21:28 -0500)
src/tmpfiles/tmpfiles.c

index 96b1fb4d3f338da40bb0d55d122440cedc8369c8..c948d4d218b7cd42ac2d6125f2da3c010c892d46 100644 (file)
@@ -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