aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/df.c')
-rw-r--r--toys/posix/df.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/posix/df.c b/toys/posix/df.c
index 7f43a109..0201315e 100644
--- a/toys/posix/df.c
+++ b/toys/posix/df.c
@@ -155,8 +155,9 @@ void df_main(void)
struct stat st;
// Stat it (complain if we can't).
- if (stat(*next, &st)) perror_msg("'%s'", *next);
- else {
+ if (stat(*next, &st)) {
+ if (!measuring) perror_msg("'%s'", *next);
+ } else {
// Find and display this filesystem. Use _last_ hit in case of
// overmounts (which is first hit in the reversed list).
for (mt = mtend; mt; mt = mt->prev)