diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-08-14 18:35:36 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-08-14 18:36:22 -0400 |
commit | 9ca55798cd2763ab1dbd0c3164b92785a4d5695f (patch) | |
tree | 7045e885028d4e187fac52426d0a360d9c89eaba /src | |
parent | 6328540098383b453ed265576fdbadd3049b2963 (diff) |
src/shared/path-util.c: revert change from realpath to canonicalize_file_name
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/path-util.c | 2 |
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) { |