diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-12-01 01:15:42 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-12-03 00:25:00 +0900 |
commit | 46e92680e0a4edc6ca2817b80cc150d67d43d00b (patch) | |
tree | 5357eeb78787f9b718583c73b1cc23b6ad66cf0e /src | |
parent | a1904a46630694d65ba333418cf0c9590598f3e5 (diff) | |
download | systemd-46e92680e0a4edc6ca2817b80cc150d67d43d00b.tar.gz systemd-46e92680e0a4edc6ca2817b80cc150d67d43d00b.tar.bz2 systemd-46e92680e0a4edc6ca2817b80cc150d67d43d00b.zip |
fs-util: remove comment about non-existing function
Diffstat (limited to 'src')
-rw-r--r-- | src/basic/fs-util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index 3fe5c7cf13..aa33da48b0 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -621,10 +621,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags, * Suggested usage: whenever you want to canonicalize a path, use this function. Pass the absolute path you got * as-is: fully qualified and relative to your host's root. Optionally, specify the root parameter to tell this * function what to do when encountering a symlink with an absolute path as directory: prefix it by the - * specified path. - * - * Note: there's also chase_symlinks_prefix() (see below), which as first step prefixes the passed path by the - * passed root. */ + * specified path. */ if (original_root) { r = path_make_absolute_cwd(original_root, &root); |