From 939ca2136363f50b5acdb9ca102b9c27389859f1 Mon Sep 17 00:00:00 2001 From: Franck Bui Date: Tue, 24 Apr 2018 12:24:38 +0200 Subject: [PATCH] tmpfiles: 'e' is supposed to accept shell-style globs --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index d52af22d73..bc66299142 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)