diff options
author | Mark Whitley | 2001-03-14 17:30:44 +0000 |
---|---|---|
committer | Mark Whitley | 2001-03-14 17:30:44 +0000 |
commit | 20f61d35de081067ce2e31c58c80cd30070ee876 (patch) | |
tree | c22d51c85bac36b6479e18fc983c00328c494860 | |
parent | 44a991470955ec3018ba8f40cc3be7b864dc8cce (diff) | |
download | busybox-20f61d35de081067ce2e31c58c80cd30070ee876.zip busybox-20f61d35de081067ce2e31c58c80cd30070ee876.tar.gz |
The patch I previously applied from Brian Webb was 2 lines off. Oops.
-rw-r--r-- | mount.c | 2 | ||||
-rw-r--r-- | util-linux/mount.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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) diff --git a/util-linux/mount.c b/util-linux/mount.c index 58d4369..60509d5 100644 --- a/util-linux/mount.c +++ b/util-linux/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) |