changeset 1224:3aba6950b886 draft

Clarify an unclear comment pointed out by Steve Long.
author Rob Landley <rob@landley.net>
date Sun, 16 Mar 2014 16:27:38 -0500
parents a7d5b93111a5
children 06206518a74c
files toys/posix/df.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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) {