diff options
author | phk <phk@FreeBSD.org> | 1995-05-21 04:34:12 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-05-21 04:34:12 +0000 |
commit | f97e95c7b070492a1e15c3c836fcc2fba708f50e (patch) | |
tree | 1a4bf44f191011da6cad49ef141fa9ac94c4185f /release/sysinstall/system.c | |
parent | 5edfd32aaa977c96870f006abc1b4d2cafa094f1 (diff) | |
download | FreeBSD-src-f97e95c7b070492a1e15c3c836fcc2fba708f50e.zip FreeBSD-src-f97e95c7b070492a1e15c3c836fcc2fba708f50e.tar.gz |
label.c: wizard mode now returns;
disks.c: clrtobot() so that deleted stuff disappears.
disks.c: offset is signed (for OnTrack diskmanager)
system.c: don't setbuf(stdout,0), it's too slow.
Diffstat (limited to 'release/sysinstall/system.c')
-rw-r--r-- | release/sysinstall/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/release/sysinstall/system.c b/release/sysinstall/system.c index 3a75e9d..8c07585 100644 --- a/release/sysinstall/system.c +++ b/release/sysinstall/system.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: system.c,v 1.25 1995/05/20 23:33:14 phk Exp $ + * $Id: system.c,v 1.26 1995/05/21 01:56:03 phk Exp $ * * Jordan Hubbard * @@ -74,7 +74,6 @@ systemInitialize(int argc, char **argv) setlogin("root"); setenv("PATH", "/stand:/mnt/bin:/mnt/sbin:/mnt/usr/sbin:/mnt/usr/bin", 1); setbuf(stdin, 0); - setbuf(stdout, 0); setbuf(stderr, 0); } |