aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-27 17:41:29 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-27 17:41:29 +0000
commitc054b21f7d0420b1f8f8100a17fb14de9c947ef2 (patch)
tree599c2eab6746d664fcb766c345147c4b81d82cf7 /df.c
parent4c78147755fa3193269d665cae49410f529b2094 (diff)
downloadbusybox-c054b21f7d0420b1f8f8100a17fb14de9c947ef2.tar.gz
Stuf
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);
}