From 9ca55798cd2763ab1dbd0c3164b92785a4d5695f Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Thu, 14 Aug 2014 18:35:36 -0400 Subject: src/shared/path-util.c: revert change from realpath to canonicalize_file_name Signed-off-by: Anthony G. Basile --- src/shared/path-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-54-g00ecf