diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-17 01:12:36 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-17 01:12:36 +0000 |
commit | 40f493d3ba67ef58f18450dca116680a627d1cf7 (patch) | |
tree | 4c43e4947b0196d807249f8f6e1c9c679b6bbcde /util-linux | |
parent | 9b29bac7278544197cdc0f2554ed089f97ec39a4 (diff) | |
download | busybox-w32-40f493d3ba67ef58f18450dca116680a627d1cf7.tar.gz busybox-w32-40f493d3ba67ef58f18450dca116680a627d1cf7.tar.bz2 busybox-w32-40f493d3ba67ef58f18450dca116680a627d1cf7.zip |
This is vodz' latest patch. Sorry it took so long...
1) ping cleanup (compile fix from this patch already applied).
2) traceroute call not spare ntohl() now (and reduce size);
3) Fix for functions not declared static in insmod, ash, vi and mount.
4) a more simple API cmdedit :))
5) adds "stopped jobs" warning to ash on Ctrl-D and fixes "ignoreeof" option
6) reduce exporting library function index->strchr (traceroute), bzero->memset (syslogd)
git-svn-id: svn://busybox.net/trunk/busybox@3103 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 9c438bf6c..eb6091f30 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -233,7 +233,7 @@ parse_mount_options(char *options, int *flags, char *strflags) | |||
233 | } | 233 | } |
234 | } | 234 | } |
235 | 235 | ||
236 | extern int | 236 | static int |
237 | mount_one(char *blockDevice, char *directory, char *filesystemType, | 237 | mount_one(char *blockDevice, char *directory, char *filesystemType, |
238 | unsigned long flags, char *string_flags, int useMtab, int fakeIt, | 238 | unsigned long flags, char *string_flags, int useMtab, int fakeIt, |
239 | char *mtab_opts, int whineOnErrors, int mount_all) | 239 | char *mtab_opts, int whineOnErrors, int mount_all) |