aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-01-05 05:01:19 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-01-05 05:01:19 +0000
commit3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e (patch)
treed8e71ced611c1fd8b245674a3b09f6050df72e5c /pop3.c
parentb476ac337200fe5ed62494feb1280652eae57025 (diff)
downloadfetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.gz
fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.bz2
fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.zip
Progress messages now go to stdout.
svn path=/trunk/; revision=2329
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pop3.c b/pop3.c
index 4eb1aa07..0b3a5258 100644
--- a/pop3.c
+++ b/pop3.c
@@ -92,7 +92,7 @@ int pop3_ok (int sock, char *argbuf)
else
ok = PS_AUTHFAIL;
if (*bufp)
- report(stderr, 0,0,bufp);
+ report(stderr, 0, bufp);
}
else
ok = PS_PROTOCOL;
@@ -351,8 +351,8 @@ pop3_slowuidl( int sock, struct query *ctl, int *countp, int *newp)
try_id--;
}
} else {
- report(stderr, 0,0,_("Messages inserted into list on server. "
- "Cannot handle this."));
+ report(stderr, 0,
+ _("Messages inserted into list on server. Cannot handle this."));
return -1;
}
}