summaryrefslogtreecommitdiff
path: root/lib/ftw.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-01-12 18:16:31 +0000
committerJim Meyering <jim@meyering.net>2003-01-12 18:16:31 +0000
commit398ca043272aa459c7f41d3755830d389cecfa01 (patch)
tree2d64959666892fa8e7335fe11330a017b47f3ccc /lib/ftw.c
parent73bb03d0a68b3700b54e5bed23bc53d6195b12ec (diff)
downloadcoreutils-398ca043272aa459c7f41d3755830d389cecfa01.tar.xz
tweak comments
Diffstat (limited to 'lib/ftw.c')
-rw-r--r--lib/ftw.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/ftw.c b/lib/ftw.c
index b0236e732..29c72db1d 100644
--- a/lib/ftw.c
+++ b/lib/ftw.c
@@ -129,7 +129,7 @@ struct ftw_data
int flags;
/* Conversion array for flag values. It is the identity mapping for
- `nftw' calls, otherwise it maps the values to those know by
+ `nftw' calls, otherwise it maps the values to those known by
`ftw'. */
const int *cvt_arr;
@@ -145,9 +145,8 @@ struct ftw_data
};
-/* Internally we use the FTW_* constants used for `nftw'. When the
- process called `ftw' we must reduce the flag to the known flags
- for `ftw'. */
+/* Internally we use the FTW_* constants used for `nftw'. When invoked
+ as `ftw' map the flag to the subset of values used by `ftw'. */
static const int nftw_arr[] =
{
FTW_F, FTW_D, FTW_DNR, FTW_NS, FTW_SL, FTW_DP, FTW_SLN