# HG changeset patch # User Rob Landley # Date 1395005258 18000 # Node ID 3aba6950b8863e358ff85fc48a89d4a669d146ed # Parent a7d5b93111a5148512390ad46b37561c54473ca1 Clarify an unclear comment pointed out by Steve Long. diff -r a7d5b93111a5 -r 3aba6950b886 toys/posix/df.c --- a/toys/posix/df.c Sat Mar 15 15:41:09 2014 -0500 +++ b/toys/posix/df.c Sun Mar 16 16:27:38 2014 -0500 @@ -122,7 +122,7 @@ } // 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) {