summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/config.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-29 13:37:43 +0000
committerjkh <jkh@FreeBSD.org>1995-05-29 13:37:43 +0000
commit0d033a083c17fce51ca8528c982fedd20b092f6a (patch)
treea9cc877b52988aee20e78e598ae67b3f1a5f275f /usr.sbin/sysinstall/config.c
parent7312a009ea6921a83eae658b3b7578278bf5795c (diff)
downloadFreeBSD-src-0d033a083c17fce51ca8528c982fedd20b092f6a.zip
FreeBSD-src-0d033a083c17fce51ca8528c982fedd20b092f6a.tar.gz
1. Fix a looping bogon in configFstab().
2. Fix the gauge. 3. Don't shut down the media device gratuitously after getting the root floppy - it saves work later.
Diffstat (limited to 'usr.sbin/sysinstall/config.c')
-rw-r--r--usr.sbin/sysinstall/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c
index a51f996..980bc57 100644
--- a/usr.sbin/sysinstall/config.c
+++ b/usr.sbin/sysinstall/config.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: config.c,v 1.12 1995/05/28 20:28:07 jkh Exp $
+ * $Id: config.c,v 1.13 1995/05/29 11:01:06 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -155,7 +155,7 @@ configFstab(void)
for (c1 = disk->chunks->part; c1; c1 = c1->next) {
if (c1->type == freebsd) {
for (c2 = c1->part; c2; c2 = c2->next) {
- if (c2->type == part)
+ if (c2->type == part && c2->private)
chunk_list[nchunks++] = c2;
}
}
OpenPOWER on IntegriCloud