diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-23 14:37:43 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-23 14:37:43 +0000 |
| commit | ac715696fc0cf34321e9f175004658b487c9ae93 (patch) | |
| tree | 553df6df1f1d7f064809ef688e92a43311569cb4 /usr.sbin/sysinstall | |
| parent | d69d15193c1a720ffa8269058ff216dccea734c5 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 40dd3027f59b..c61abbe05e07 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -1016,9 +1016,9 @@ installFilesystems(dialogMenuItem *self) iov[1].iov_base = "devfs"; iov[1].iov_len = strlen(iov[1].iov_base) + 1; iov[2].iov_base = "fspath"; - iov[1].iov_len = strlen(iov[2].iov_base) + 1; + iov[2].iov_len = strlen(iov[2].iov_base) + 1; iov[3].iov_base = "/mnt/dev"; - iov[1].iov_len = strlen(iov[3].iov_base) + 1; + iov[3].iov_len = strlen(iov[3].iov_base) + 1; i = nmount(iov, 4, 0); if (i) { |
