summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/log.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-12-12 21:49:14 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-12-12 21:49:14 +0000
commitb8a6765874054e3f3966896a8763f7352d9ff8f1 (patch)
tree58a6aacfc446cf363ef147e1cb8b5166ca410d12 /mdk-stage1/log.c
parent2b2914cc04a93ca362e4eb3663061c3039aa4049 (diff)
downloaddrakx-backup-do-not-use-b8a6765874054e3f3966896a8763f7352d9ff8f1.tar
drakx-backup-do-not-use-b8a6765874054e3f3966896a8763f7352d9ff8f1.tar.gz
drakx-backup-do-not-use-b8a6765874054e3f3966896a8763f7352d9ff8f1.tar.bz2
drakx-backup-do-not-use-b8a6765874054e3f3966896a8763f7352d9ff8f1.tar.xz
drakx-backup-do-not-use-b8a6765874054e3f3966896a8763f7352d9ff8f1.zip
progressbar for newt+stdio while loading ramdisk
Diffstat (limited to 'mdk-stage1/log.c')
-rw-r--r--mdk-stage1/log.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/mdk-stage1/log.c b/mdk-stage1/log.c
index 8faa166c0..d4a1c71c7 100644
--- a/mdk-stage1/log.c
+++ b/mdk-stage1/log.c
@@ -68,23 +68,6 @@ void log_perror(char *msg)
log_message("%s: %s", msg, strerror(errno));
}
-void log_progression(int divide_for_count)
-{
- static int count = 0;
- if (count <= 0) {
- fprintf(logfile, ".");
- fflush(logfile);
- count = divide_for_count;
- }
- else
- count--;
-}
-
-void log_progression_done(void)
-{
- fprintf(logfile, "done\n");
-}
-
void open_log(void)
{