summaryrefslogtreecommitdiff
path: root/src/shared/path-lookup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-06-22 20:02:46 +0200
committerGitHub <noreply@github.com>2019-06-22 20:02:46 +0200
commitcee97d57687e93e07a8ee36edf0e0d0f3317fccc (patch)
tree7278ba990e750ae119cacfd6c19a0866579374ab /src/shared/path-lookup.c
parent4c1567f29aeb60a6741874bca8a8e3a0bd69ed01 (diff)
parenta13de89d361e830f603f25011896e94d5256299d (diff)
downloadsystemd-cee97d57687e93e07a8ee36edf0e0d0f3317fccc.tar.gz
Merge pull request #12836 from yuwata/tree-wide-replace-strjoin
tree-wide: replace strjoin() with path_join()
Diffstat (limited to 'src/shared/path-lookup.c')
-rw-r--r--src/shared/path-lookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c
index 1a005970f2..6494210ee9 100644
--- a/src/shared/path-lookup.c
+++ b/src/shared/path-lookup.c
@@ -303,7 +303,7 @@ static int acquire_transient_dir(
return -EOPNOTSUPP;
if (tempdir)
- transient = strjoin(tempdir, "/transient");
+ transient = path_join(tempdir, "transient");
else if (scope == UNIT_FILE_SYSTEM)
transient = strdup("/run/systemd/transient");
else