aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'df.c')
-rw-r--r--df.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/df.c b/df.c
index 8b8db78a6..1404e9621 100644
--- a/df.c
+++ b/df.c
@@ -103,9 +103,7 @@ extern int df_main(int argc, char **argv)
}
while ((mountEntry = getmntent(mountTable))) {
- int status = df(mountEntry->mnt_fsname, mountEntry->mnt_dir);
- if (status)
- exit( status);
+ df(mountEntry->mnt_fsname, mountEntry->mnt_dir);
}
endmntent(mountTable);
}