aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-27 17:41:29 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-27 17:41:29 +0000
commit855387cfe73c868e360b6bc06956128a0be0b7b3 (patch)
tree599c2eab6746d664fcb766c345147c4b81d82cf7 /df.c
parent1d38e8ad50a102af8ad1fc4ba2ceed23e8ab7592 (diff)
downloadbusybox-w32-855387cfe73c868e360b6bc06956128a0be0b7b3.tar.gz
busybox-w32-855387cfe73c868e360b6bc06956128a0be0b7b3.tar.bz2
busybox-w32-855387cfe73c868e360b6bc06956128a0be0b7b3.zip
Stuf
git-svn-id: svn://busybox.net/trunk/busybox@122 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)
103 } 103 }
104 104
105 while ((mountEntry = getmntent(mountTable))) { 105 while ((mountEntry = getmntent(mountTable))) {
106 int status = df(mountEntry->mnt_fsname, mountEntry->mnt_dir); 106 df(mountEntry->mnt_fsname, mountEntry->mnt_dir);
107 if (status)
108 exit( status);
109 } 107 }
110 endmntent(mountTable); 108 endmntent(mountTable);
111 } 109 }