diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-21 15:40:54 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-21 15:40:54 +0000 |
commit | 4a787e15cb0d283d322b339da109669d726aca89 (patch) | |
tree | e10f963b1e89963fb5b2b5292efe83d3145698d9 /usr.sbin/sade/label.c | |
parent | 0fff99e87d8ae6d88b00b11970270a81ea9636a1 (diff) | |
download | FreeBSD-src-4a787e15cb0d283d322b339da109669d726aca89.zip FreeBSD-src-4a787e15cb0d283d322b339da109669d726aca89.tar.gz |
1. Start syncing up the network strategy code so that folks like Poul and
Justin can see it.
2. Attempt to fix the redisplay problems in label.c some more. Not clearing
the screen each time is certainly faster, but it's causing all sorts of
problems.
Diffstat (limited to 'usr.sbin/sade/label.c')
-rw-r--r-- | usr.sbin/sade/label.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/label.c b/usr.sbin/sade/label.c index 0410186..d840353 100644 --- a/usr.sbin/sade/label.c +++ b/usr.sbin/sade/label.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: label.c,v 1.16 1995/05/21 06:12:43 phk Exp $ + * $Id: label.c,v 1.17 1995/05/21 10:16:10 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -210,9 +210,9 @@ get_mountpoint(struct chunk *old) char *val; PartInfo *tmp; + dialog_clear(); clear(); val = msgGetInput(old && old->private ? ((PartInfo *)old->private)->mountpoint : NULL, "Please specify a mount point for the partition"); - clear(); if (!val) return NULL; |