summaryrefslogtreecommitdiff
path: root/umount.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-03-23 01:09:18 +0000
committerErik Andersen <andersen@codepoet.org>2000-03-23 01:09:18 +0000
commit298854f02963bd8e43dfeb7224d88cfeb0c932cb (patch)
tree7a2fbb55e55f980edddb0d627c3f3e79c8f793b0 /umount.c
parentec5bd90916b6e815a36c14ac04d1b78e3e487400 (diff)
downloadbusybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.tar.gz
busybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.tar.bz2
busybox-w32-298854f02963bd8e43dfeb7224d88cfeb0c932cb.zip
My latest ramblings.
-Erik
Diffstat (limited to 'umount.c')
-rw-r--r--umount.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/umount.c b/umount.c
index c34bf5fc3..23973fc85 100644
--- a/umount.c
+++ b/umount.c
@@ -145,6 +145,9 @@ char *mtab_next(void **iter)
145 return mp; 145 return mp;
146} 146}
147 147
148/* Don't bother to clean up, since exit() does that
149 * automagically, so we can save a few bytes */
150#if 0
148void mtab_free(void) 151void mtab_free(void)
149{ 152{
150 struct _mtab_entry_t *this, *next; 153 struct _mtab_entry_t *this, *next;
@@ -160,6 +163,7 @@ void mtab_free(void)
160 this = next; 163 this = next;
161 } 164 }
162} 165}
166#endif
163 167
164static int do_umount(const char *name, int useMtab) 168static int do_umount(const char *name, int useMtab)
165{ 169{