summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/termcap.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-08 06:06:30 +0000
committerjkh <jkh@FreeBSD.org>1995-05-08 06:06:30 +0000
commit7440d1ae5c074c0c8ed8018cd10e429b279d8745 (patch)
tree0f8452edfa4c92d9e7ad62938d4ad2e891ccdbef /usr.sbin/sysinstall/termcap.c
parent021b1e61da72a756bc8f87b139948c264ab03d85 (diff)
downloadFreeBSD-src-7440d1ae5c074c0c8ed8018cd10e429b279d8745.zip
FreeBSD-src-7440d1ae5c074c0c8ed8018cd10e429b279d8745.tar.gz
Ok, we should now create all filesystems, mount them and extract the
cpio floppy at this point.
Diffstat (limited to 'usr.sbin/sysinstall/termcap.c')
-rw-r--r--usr.sbin/sysinstall/termcap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sysinstall/termcap.c b/usr.sbin/sysinstall/termcap.c
index 8b2a5f9..86e758a 100644
--- a/usr.sbin/sysinstall/termcap.c
+++ b/usr.sbin/sysinstall/termcap.c
@@ -42,19 +42,19 @@ set_termcap(void)
return -1;
if (setenv("TERMCAP", termcap_cons25, 1) < 0)
return -1;
- DebugFD = open("/dev/ttyv1",O_WRONLY);
+ DebugFD = open("/dev/ttyv1", O_WRONLY);
OnVTY = TRUE;
} else {
if (setenv("TERM", "cons25-m", 1) < 0)
return -1;
if (setenv("TERMCAP", termcap_cons25_m, 1) < 0)
return -1;
- DebugFD = open("/dev/ttyv1",O_WRONLY);
+ DebugFD = open("/dev/ttyv1", O_WRONLY);
OnVTY = TRUE;
}
}
else {
- DebugFD = open("sysinstall.debug", O_WRONLY|O_CREAT|O_TRUNC,0644);
+ DebugFD = open("sysinstall.debug", O_WRONLY|O_CREAT|O_TRUNC, 0644);
}
return 0;
}
OpenPOWER on IntegriCloud