diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-30 10:43:57 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-30 10:59:47 +0100 |
commit | 62a85ee0a9237e8c0c821e1d11425e967180164b (patch) | |
tree | 758fb5a4d287038b8753eb2b582504231b2baf69 /src/tmpfiles | |
parent | tree-wide: replace path_join with path_join_many (diff) | |
download | systemd-62a85ee0a9237e8c0c821e1d11425e967180164b.tar.xz 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.c | 2 |
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 |