diff options
author | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-14 17:30:44 +0000 |
---|---|---|
committer | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-14 17:30:44 +0000 |
commit | 316c48872b5afa0a848a80fb77c7193872a86700 (patch) | |
tree | c22d51c85bac36b6479e18fc983c00328c494860 | |
parent | 210fda5d9bdd9d5af39ec933c14d3c11f9352c0e (diff) | |
download | busybox-w32-316c48872b5afa0a848a80fb77c7193872a86700.tar.gz busybox-w32-316c48872b5afa0a848a80fb77c7193872a86700.tar.bz2 busybox-w32-316c48872b5afa0a848a80fb77c7193872a86700.zip |
The patch I previously applied from Brian Webb was 2 lines off. Oops.
git-svn-id: svn://busybox.net/trunk/busybox@2076 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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) | |||
440 | device = strdup(m->mnt_fsname); | 440 | device = strdup(m->mnt_fsname); |
441 | directory = strdup(m->mnt_dir); | 441 | directory = strdup(m->mnt_dir); |
442 | filesystemType = strdup(m->mnt_type); | 442 | filesystemType = strdup(m->mnt_type); |
443 | string_flags = strdup(string_flags); | ||
444 | singlemount: | 443 | singlemount: |
444 | string_flags = strdup(string_flags); | ||
445 | rc = EXIT_SUCCESS; | 445 | rc = EXIT_SUCCESS; |
446 | #ifdef BB_NFSMOUNT | 446 | #ifdef BB_NFSMOUNT |
447 | if (strchr(device, ':') != NULL) | 447 | if (strchr(device, ':') != NULL) |
diff --git a/util-linux/mount.c b/util-linux/mount.c index 58d436964..60509d5f3 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -440,8 +440,8 @@ extern int mount_main(int argc, char **argv) | |||
440 | device = strdup(m->mnt_fsname); | 440 | device = strdup(m->mnt_fsname); |
441 | directory = strdup(m->mnt_dir); | 441 | directory = strdup(m->mnt_dir); |
442 | filesystemType = strdup(m->mnt_type); | 442 | filesystemType = strdup(m->mnt_type); |
443 | string_flags = strdup(string_flags); | ||
444 | singlemount: | 443 | singlemount: |
444 | string_flags = strdup(string_flags); | ||
445 | rc = EXIT_SUCCESS; | 445 | rc = EXIT_SUCCESS; |
446 | #ifdef BB_NFSMOUNT | 446 | #ifdef BB_NFSMOUNT |
447 | if (strchr(device, ':') != NULL) | 447 | if (strchr(device, ':') != NULL) |