aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-01-05 05:09:40 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-01-05 05:09:40 +0000
commit813e9e8ffad98b274a8aa1c31fcce76b44ad192e (patch)
tree4beffd92b2456ee5cfe9e58b7143e3140094881a /pop3.c
parent3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e (diff)
downloadfetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.tar.gz
fetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.tar.bz2
fetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.zip
error -> report, third stage.
svn path=/trunk/; revision=2330
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pop3.c b/pop3.c
index 0b3a5258..5b809a1a 100644
--- a/pop3.c
+++ b/pop3.c
@@ -205,7 +205,7 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
for (start = greeting; *start != 0 && *start != '<'; start++)
continue;
if (*start == 0) {
- report(stderr, -1, _("Required APOP timestamp not found in greeting"));
+ report(stderr, 0, _("Required APOP timestamp not found in greeting"));
return(PS_AUTHFAIL);
}
@@ -213,7 +213,7 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
for (end = start; *end != 0 && *end != '>'; end++)
continue;
if (*end == 0 || end == start + 1) {
- report(stderr, -1, _("Timestamp syntax error in greeting"));
+ report(stderr, 0, _("Timestamp syntax error in greeting"));
return(PS_AUTHFAIL);
}
else