be0c12
From 520ff5394187a0d6cb0cb40251f6e8e997ccdd0e Mon Sep 17 00:00:00 2001
be0c12
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
be0c12
Date: Wed, 7 Apr 2021 17:54:49 +0200
be0c12
Subject: [PATCH] tmpfiles: rework condition check
be0c12
be0c12
(!a && b) || (a && c) is replaced by (a ? c : b).
be0c12
be0c12
path_startswith() != NULL is need to avoid type warning.
be0c12
be0c12
(cherry picked from commit 875e7b25d84a111755dab79241c9e64e44836910)
be0c12
be0c12
Related: #1944468
be0c12
---
be0c12
 src/tmpfiles/tmpfiles.c | 11 ++++++++---
be0c12
 1 file changed, 8 insertions(+), 3 deletions(-)
be0c12
be0c12
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
be0c12
index 1aeeed0d2e..50fada99dd 100644
be0c12
--- a/src/tmpfiles/tmpfiles.c
be0c12
+++ b/src/tmpfiles/tmpfiles.c
be0c12
@@ -2705,7 +2705,11 @@ static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoe
be0c12
                                 for (size_t nj = 0; nj < ja->count; nj++) {
be0c12
                                         Item *j = ja->items + nj;
be0c12
 
be0c12
-                                        if (!IN_SET(j->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA))
be0c12
+                                        if (!IN_SET(j->type, CREATE_DIRECTORY,
be0c12
+                                                             TRUNCATE_DIRECTORY,
be0c12
+                                                             CREATE_SUBVOLUME,
be0c12
+                                                             CREATE_SUBVOLUME_INHERIT_QUOTA,
be0c12
+                                                             CREATE_SUBVOLUME_NEW_QUOTA))
be0c12
                                                 continue;
be0c12
 
be0c12
                                         if (path_equal(j->path, i->path)) {
be0c12
@@ -2713,8 +2717,9 @@ static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoe
be0c12
                                                 break;
be0c12
                                         }
be0c12
 
be0c12
-                                        if ((!candidate_item && path_startswith(i->path, j->path)) ||
be0c12
-                                            (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
be0c12
+                                        if (candidate_item
be0c12
+                                            ? (path_startswith(j->path, candidate_item->path) && fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)
be0c12
+                                            : path_startswith(i->path, j->path) != NULL)
be0c12
                                                 candidate_item = j;
be0c12
                                 }
be0c12