OSDN Git Service

Clarify an unclear comment pointed out by Steve Long.
authorRob Landley <rob@landley.net>
Sun, 16 Mar 2014 21:27:38 +0000 (16:27 -0500)
committerRob Landley <rob@landley.net>
Sun, 16 Mar 2014 21:27:38 +0000 (16:27 -0500)
toys/posix/df.c

index ed41a4e..7fab428 100644 (file)
@@ -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) {