aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-01-17 02:58:46 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-01-17 02:58:46 +0000
commit26d408b17903b7e06d2abd662d36445fea5f502c (patch)
tree0400e99005f1db451b62798dd610c4cb7fe0854f /driver.c
parentf1fa3732087b628f3950c4624319257b02d4f8d7 (diff)
downloadfetchmail-26d408b17903b7e06d2abd662d36445fea5f502c.tar.gz
fetchmail-26d408b17903b7e06d2abd662d36445fea5f502c.tar.bz2
fetchmail-26d408b17903b7e06d2abd662d36445fea5f502c.zip
Enable -L to work in foreground.
svn path=/trunk/; revision=2713
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 05d91b73..655bf4d3 100644
--- a/driver.c
+++ b/driver.c
@@ -1214,7 +1214,10 @@ static int readbody(int sock, struct query *ctl, flag forward, int len)
return(PS_IOERR);
}
else if (outlevel >= O_VERBOSE)
- fputc('*', stderr);
+ {
+ fputc('*', stdout);
+ fflush(stdout);
+ }
}
}