diff options
-rw-r--r-- | coreutils/readlink.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/coreutils/readlink.c b/coreutils/readlink.c index f7ad791ec..d73ef4ddb 100644 --- a/coreutils/readlink.c +++ b/coreutils/readlink.c | |||
@@ -39,7 +39,10 @@ | |||
39 | * -q, --quiet, -s, --silent suppress most error messages | 39 | * -q, --quiet, -s, --silent suppress most error messages |
40 | * -v, --verbose report error messages | 40 | * -v, --verbose report error messages |
41 | * | 41 | * |
42 | * bbox supports: -f -n -v (fully), -q -s (accepts but ignores) | 42 | * bbox supports: -f (partially) -n -v (fully), -q -s (accepts but ignores) |
43 | * Note: we export the -f flag, but our -f behaves like coreutils' -e. | ||
44 | * Unfortunately, there isn't a C lib function we can leverage to get this | ||
45 | * behavior which means we'd have to implement the full stack ourselves :(. | ||
43 | */ | 46 | */ |
44 | 47 | ||
45 | int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 48 | int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |