summaryrefslogtreecommitdiff
path: root/src/shared/path-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/path-util.c')
-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 aa439af90d..ccd5c7ecc6 100644
--- a/src/shared/path-util.c
+++ b/src/shared/path-util.c
@@ -147,7 +147,7 @@ char **path_strv_resolve(char **l, const char *prefix) {
t = *s;
errno = 0;
- u = canonicalize_file_name(t);
+ u = realpath(t, 0);
if (!u) {
if (errno == ENOENT) {
if (prefix) {