diff options
author | Mark Whitley <markw@lineo.com> | 2001-03-12 23:17:26 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-03-12 23:17:26 +0000 |
commit | bd2e42f162dfd90b4356ace9e60410832e972a68 (patch) | |
tree | 5eef9c7dfc6282f2a91b7ce98b6de7ad7a925bcf | |
parent | 94fd480babd9e9a3bc7c981fa2e1cca8ffe9cd60 (diff) |
Applied a patch from Brian Webb to fix a problem with mount on the Agenda PDA.
Apparently, the mount() call does not like taking a stack allocated pointer.
-rw-r--r-- | mount.c | 1 | ||||
-rw-r--r-- | util-linux/mount.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -440,6 +440,7 @@ extern int mount_main(int argc, char **argv) device = strdup(m->mnt_fsname); directory = strdup(m->mnt_dir); filesystemType = strdup(m->mnt_type); + string_flags = strdup(string_flags); singlemount: rc = EXIT_SUCCESS; #ifdef BB_NFSMOUNT diff --git a/util-linux/mount.c b/util-linux/mount.c index a2d6053c0..58d436964 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -440,6 +440,7 @@ extern int mount_main(int argc, char **argv) device = strdup(m->mnt_fsname); directory = strdup(m->mnt_dir); filesystemType = strdup(m->mnt_type); + string_flags = strdup(string_flags); singlemount: rc = EXIT_SUCCESS; #ifdef BB_NFSMOUNT |