From: Franck Bui Date: Tue, 24 Apr 2018 10:24:38 +0000 (+0200) Subject: tmpfiles: 'e' is supposed to accept shell-style globs X-Git-Tag: v239~363^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8801%2Fhead;p=thirdparty%2Fsystemd.git tmpfiles: 'e' is supposed to accept shell-style globs --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index d52af22d735..bc662991425 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1570,7 +1570,7 @@ static int create_item(Item *i) { _fallthrough_; case EMPTY_DIRECTORY: - r = path_set_perms(i, i->path); + r = glob_item(i, path_set_perms); if (q < 0) return q; if (r < 0)