tmpfiles: use path_join() where we can

This commit is contained in:
Lennart Poettering 2019-06-18 12:41:02 +02:00
parent 3d9f670783
commit 113ed3be37
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ static int dir_cleanup(
continue;
}
sub_path = strjoin(p, "/", dent->d_name);
sub_path = path_join(p, dent->d_name);
if (!sub_path) {
r = log_oom();
goto finish;