aboutsummaryrefslogtreecommitdiffstats
path: root/etrn.c
diff options
context:
space:
mode:
Diffstat (limited to 'etrn.c')
-rw-r--r--etrn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/etrn.c b/etrn.c
index de97fea9..98f2f7b4 100644
--- a/etrn.c
+++ b/etrn.c
@@ -25,7 +25,7 @@ static int etrn_ok (int sock, char *argbuf)
{
int ok;
- ok = SMTP_ok(sock);
+ ok = SMTP_ok(sock, SMTP_MODE);
if (ok == SM_UNRECOVERABLE)
return(PS_PROTOCOL);
else
@@ -40,7 +40,7 @@ static int etrn_getrange(int sock, struct query *ctl, const char *id,
char buf [MSGBUFSIZE+1];
struct idlist *qnp; /* pointer to Q names */
- if ((ok = SMTP_ehlo(sock, fetchmailhost,
+ if ((ok = SMTP_ehlo(sock, SMTP_MODE, fetchmailhost,
ctl->server.esmtp_name, ctl->server.esmtp_password,
&opts)))
{