diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-11-27 17:41:29 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-11-27 17:41:29 +0000 |
commit | c054b21f7d0420b1f8f8100a17fb14de9c947ef2 (patch) | |
tree | 599c2eab6746d664fcb766c345147c4b81d82cf7 /coreutils | |
parent | 4c78147755fa3193269d665cae49410f529b2094 (diff) | |
download | busybox-c054b21f7d0420b1f8f8100a17fb14de9c947ef2.tar.gz |
Stuf
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/df.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index 8b8db78a6..1404e9621 100644 --- a/coreutils/df.c +++ b/coreutils/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); } |