summaryrefslogtreecommitdiff
path: root/src/tmpfiles
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-30 10:43:57 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-30 10:59:47 +0100
commit62a85ee0a9237e8c0c821e1d11425e967180164b (patch)
tree758fb5a4d287038b8753eb2b582504231b2baf69 /src/tmpfiles
parent30016f21b36599a0c5c563f165db48ddb32d6521 (diff)
downloadsystemd-62a85ee0a9237e8c0c821e1d11425e967180164b.tar.gz
systemd-62a85ee0a9237e8c0c821e1d11425e967180164b.tar.bz2
systemd-62a85ee0a9237e8c0c821e1d11425e967180164b.zip
tree-wide: rename path_join_many() to path_join()
$ git grep -e path_join_many -l|xargs sed -r -i 's/path_join_many/path_join/g' The two test functions are merged into one.
Diffstat (limited to 'src/tmpfiles')
-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 854ca2d33c..ce17d6972d 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_many(path, de->d_name);
+ de_path = path_join(path, de->d_name);
if (!de_path)
q = log_oom();
else