diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-11 17:42:44 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-11 17:42:44 +0000 |
commit | 9144c71817411b7e72cc06f9d043a6e0bdb8804a (patch) | |
tree | dd597506d203700ee8bdab93e5467cac0e2a1712 /include/libbb.h | |
parent | 89847aa3141bf38cd22040e87df25aefe8f8450e (diff) | |
download | busybox-w32-9144c71817411b7e72cc06f9d043a6e0bdb8804a.tar.gz busybox-w32-9144c71817411b7e72cc06f9d043a6e0bdb8804a.tar.bz2 busybox-w32-9144c71817411b7e72cc06f9d043a6e0bdb8804a.zip |
nfsmount: sanitize it. It had a rather peculiar idea of implementing "bg"
option - it was going to return a special flag back to caller and
expecting caller to call it again with special parameter! Also
caller was charged with calling mount() syscall...
mount: mtab support was non-functional. Enabling it revealed serious bug
which is not fixed yet.
git-svn-id: svn://busybox.net/trunk/busybox@16102 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6e136ab7b..cb39e7b3f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -303,8 +303,8 @@ extern int set_loop(char **device, const char *file, int offset); | |||
303 | extern int vdprintf(int d, const char *format, va_list ap); | 303 | extern int vdprintf(int d, const char *format, va_list ap); |
304 | #endif | 304 | #endif |
305 | 305 | ||
306 | int nfsmount(const char *spec, const char *node, int *flags, | 306 | int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts); |
307 | char **mount_opts, int running_bg); | 307 | int nfsmount(struct mntent *mp, int vfsflags, char *filteropts); |
308 | 308 | ||
309 | /* Include our own copy of struct sysinfo to avoid binary compatibility | 309 | /* Include our own copy of struct sysinfo to avoid binary compatibility |
310 | * problems with Linux 2.4, which changed things. Grumble, grumble. */ | 310 | * problems with Linux 2.4, which changed things. Grumble, grumble. */ |