From 7b887f2284e2ada3e95494d5972d2f64f27fe81b Mon Sep 17 00:00:00 2001 From: Franck Bui Date: Thu, 12 Apr 2018 12:18:19 +0200 Subject: [PATCH] tmpfiles: remove spurious curly braces in create_item() --- src/tmpfiles/tmpfiles.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 9862e34..5755f22 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1451,8 +1451,7 @@ static int create_item(Item *i) { return r; break; - case COPY_FILES: { - + case COPY_FILES: RUN_WITH_UMASK(0000) (void) mkdir_parents_label(i->path, 0755); @@ -1625,7 +1624,6 @@ static int create_item(Item *i) { return r; break; - } case CREATE_SYMLINK: { RUN_WITH_UMASK(0000) -- 2.7.4