diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 03:03:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 03:03:41 +0000 |
commit | f7d8e5a915fd4274a59fd2f52470ced2b59183aa (patch) | |
tree | fd1c500f484a7e4d346e6f76ebcab2ac332184e1 /fetchmail.c | |
parent | f72b77a3eca0126a3842265919635bb442202ae3 (diff) | |
download | fetchmail-f7d8e5a915fd4274a59fd2f52470ced2b59183aa.tar.gz fetchmail-f7d8e5a915fd4274a59fd2f52470ced2b59183aa.tar.bz2 fetchmail-f7d8e5a915fd4274a59fd2f52470ced2b59183aa.zip |
setvbuf not needed; messages are going to stderr.
svn path=/trunk/; revision=2264
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index a3a4190d..f037d400 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -164,9 +164,6 @@ int main (int argc, char **argv) if ((parsestatus = parsecmdline(argc,argv, &cmd_run, &cmd_opts)) < 0) exit(PS_SYNTAX); - /* this hint to stdio should help messages come out in the right order */ - setvbuf(stdout, NULL, _IOLBF, MSGBUFSIZE); - if (versioninfo) { printf(_("This is fetchmail release %s"), VERSION); |