diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-01-17 02:58:46 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-01-17 02:58:46 +0000 |
commit | 26d408b17903b7e06d2abd662d36445fea5f502c (patch) | |
tree | 0400e99005f1db451b62798dd610c4cb7fe0854f /driver.c | |
parent | f1fa3732087b628f3950c4624319257b02d4f8d7 (diff) | |
download | fetchmail-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.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); + } } } |