diff options
-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 3256deeec1..9e2fd6434a 100644 --- a/src/shared/path-util.c +++ b/src/shared/path-util.c @@ -519,7 +519,7 @@ fallback: if (r < 0) return r; - r = lstat(parent, &b); + r = stat(parent, &b); if (r < 0) return -errno; |