Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2001-03-14 20:30:44 +0300
committerMark Whitley <markw@lineo.com>2001-03-14 20:30:44 +0300
commit20f61d35de081067ce2e31c58c80cd30070ee876 (patch)
treec22d51c85bac36b6479e18fc983c00328c494860 /mount.c
parent44a991470955ec3018ba8f40cc3be7b864dc8cce (diff)
The patch I previously applied from Brian Webb was 2 lines off. Oops.
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mount.c b/mount.c
index 58d436964..60509d5f3 100644
--- a/mount.c
+++ b/mount.c
@@ -440,8 +440,8 @@ 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:
+ string_flags = strdup(string_flags);
rc = EXIT_SUCCESS;
#ifdef BB_NFSMOUNT
if (strchr(device, ':') != NULL)