diff options
author | Rob Landley <rob@landley.net> | 2013-08-30 17:34:24 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-08-30 17:34:24 -0500 |
commit | 42adb7a56ba7b251ebc0a2d7aced81d3be5342a3 (patch) | |
tree | cf43644ec155f8d233e78ae3af148d59defe17b9 /toys/posix | |
parent | d04dc1feb92a279e27e4487c502944f454d43837 (diff) | |
download | toybox-42adb7a56ba7b251ebc0a2d7aced81d3be5342a3.tar.gz |
Allow getmountlist to read fstab too.
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/df.c b/toys/posix/df.c index 83b59bb0..97b3234f 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -108,7 +108,7 @@ void df_main(void) TT.units); } else puts("Filesystem\t1K-blocks\tUsed Available Use% Mounted on"); - mtlist = xgetmountlist(); + mtlist = xgetmountlist(0); // If we have a list of filesystems on the command line, loop through them. if (*toys.optargs) { |