aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/df.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-03-16 16:27:38 -0500
committerRob Landley <rob@landley.net>2014-03-16 16:27:38 -0500
commit817d97ba626f86c376cb8311c099ea5f010205d5 (patch)
treeea31bdb3488c6dbb46484b6c7b34f54214f1d3bf /toys/posix/df.c
parent9ea9911b20ed353ead9170366c44138489c2889c (diff)
downloadtoybox-817d97ba626f86c376cb8311c099ea5f010205d5.tar.gz
Clarify an unclear comment pointed out by Steve Long.
Diffstat (limited to 'toys/posix/df.c')
-rw-r--r--toys/posix/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/df.c b/toys/posix/df.c
index ed41a4ee..7fab4281 100644
--- a/toys/posix/df.c
+++ b/toys/posix/df.c
@@ -122,7 +122,7 @@ void df_main(void)
}
// Find and display this filesystem. Use _last_ hit in case of
- // -- bind mounts.
+ // overmounts (which is first hit in the reversed list).
mt2 = NULL;
for (mt = mtlist; mt; mt = mt->next) {
if (st.st_dev == mt->stat.st_dev) {