diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-29 16:49:30 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-01 00:25:51 +0100 |
commit | c4f4fce79e157800212f3cba1b21870097030e81 (patch) | |
tree | f5ef8b7fb1d3b6de637570ee3ddb1157e151b87e /src/journal | |
parent | a4eaf3cf822dae1d076dfc98afc3ab0d53871dac (diff) |
fs-util: add flags parameter to chase_symlinks()
Let's remove chase_symlinks_prefix() and instead introduce a flags parameter to
chase_symlinks(), with a flag CHASE_PREFIX_ROOT that exposes the behaviour of
chase_symlinks_prefix().
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journalctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index d0d4524c9f..10d3ff3b45 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -941,7 +941,7 @@ static int add_matches(sd_journal *j, char **args) { _cleanup_free_ char *p = NULL, *t = NULL, *t2 = NULL, *interpreter = NULL; struct stat st; - r = chase_symlinks(*i, NULL, &p); + r = chase_symlinks(*i, NULL, 0, &p); if (r < 0) return log_error_errno(r, "Couldn't canonicalize path: %m"); |