diff options
author | jkh <jkh@FreeBSD.org> | 1996-07-31 06:20:59 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-07-31 06:20:59 +0000 |
commit | 7bb847443d746dbfcb7ea818538d2f42b1921364 (patch) | |
tree | cc2ecdeb856d895ae030139b6745edde8dae0e30 /usr.sbin/sade/msg.c | |
parent | ebd61ccfa419fe49187d41abb787fbc6445fe8d1 (diff) | |
download | FreeBSD-src-7bb847443d746dbfcb7ea818538d2f42b1921364.zip FreeBSD-src-7bb847443d746dbfcb7ea818538d2f42b1921364.tar.gz |
Detect which partitions have already been created with `auto' so as not to create them
twice.
Various cosmetic tweaks.
Diffstat (limited to 'usr.sbin/sade/msg.c')
-rw-r--r-- | usr.sbin/sade/msg.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/sade/msg.c b/usr.sbin/sade/msg.c index f37b0d3..3369019 100644 --- a/usr.sbin/sade/msg.c +++ b/usr.sbin/sade/msg.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: msg.c,v 1.36 1996/06/14 14:33:57 jkh Exp $ + * $Id: msg.c,v 1.37 1996/07/10 11:38:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -82,9 +82,7 @@ msgInfo(char *fmt, ...) /* NULL is a special convention meaning "erase the old stuff" */ if (!fmt) { move(OnVTY ? VTY_STATLINE : TTY_STATLINE, 0); - attrset(A_NORMAL); clrtoeol(); - attrset(attrs); return; } errstr = (char *)alloca(FILENAME_MAX); |