diff options
author | jkh <jkh@FreeBSD.org> | 1996-04-29 21:07:44 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-04-29 21:07:44 +0000 |
commit | 0236ef4976994dcb3234fd377c4db2d152ffc787 (patch) | |
tree | 97a91521a344f56529929add70f8490b7fe366a3 /release | |
parent | 4c9fab8cf79cd02d9f736ca6420d778c2f7de75a (diff) | |
download | FreeBSD-src-0236ef4976994dcb3234fd377c4db2d152ffc787.zip FreeBSD-src-0236ef4976994dcb3234fd377c4db2d152ffc787.tar.gz |
Remove a bogus dialog_clear();
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/dist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index f77214e..237986a 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.45 1996/04/28 03:26:51 jkh Exp $ + * $Id: dist.c,v 1.46 1996/04/29 17:59:07 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -390,7 +390,6 @@ distExtract(char *parent, Distribution *me) goto punt; } snprintf(prompt, 80, "Extracting %s into %s directory...", me[i].my_name, me[i].my_dir); - dialog_clear(); dialog_gauge("Progress", prompt, 8, 15, 6, 50, (int)((float)(chunk + 1) / numchunks * 100)); move(0, 0); /* Get cursor out of the way - it makes gauges look strange */ while ((n = read(fd, buf, sizeof buf)) > 0) { |