summaryrefslogtreecommitdiff
path: root/src/tmpfiles/tmpfiles.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-30 10:40:38 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-30 10:40:38 +0100
commit30016f21b36599a0c5c563f165db48ddb32d6521 (patch)
tree094a167b640b03c791f9764ca9c6a7d329aa8772 /src/tmpfiles/tmpfiles.c
parentb2ac2b01c8ddaabbe63bcb7168dd752f44320d86 (diff)
downloadsystemd-30016f21b36599a0c5c563f165db48ddb32d6521.tar.gz
tree-wide: replace path_join with path_join_many
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r--src/tmpfiles/tmpfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index 21ba6dd330..854ca2d33c 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -1844,7 +1844,7 @@ static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
else {
_cleanup_free_ char *de_path = NULL;
- de_path = path_join(NULL, path, de->d_name);
+ de_path = path_join_many(path, de->d_name);
if (!de_path)
q = log_oom();
else