summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/path-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/path-util.c b/src/shared/path-util.c
index ccd5c7ecc6..5dfa8266ec 100644
--- a/src/shared/path-util.c
+++ b/src/shared/path-util.c
@@ -112,7 +112,7 @@ char *path_make_absolute_cwd(const char *p) {
if (!cwd)
return NULL;
- return path_make_absolute(p, cwd);
+ return strjoin(cwd, "/", p, NULL);
}
char **path_strv_resolve(char **l, const char *prefix) {