diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-13 01:19:04 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-13 01:19:04 +0000 |
commit | 2738a6c6de1c4d894c9d97688bd96db32d7dc71d (patch) | |
tree | f70d7085c722ae644bf0ef406d8a8f3298ea0d53 /etrn.c | |
parent | f87ddcebc141c1db8086227fe0b141aba9837bb5 (diff) | |
download | fetchmail-2738a6c6de1c4d894c9d97688bd96db32d7dc71d.tar.gz fetchmail-2738a6c6de1c4d894c9d97688bd96db32d7dc71d.tar.bz2 fetchmail-2738a6c6de1c4d894c9d97688bd96db32d7dc71d.zip |
Ready for 3-4.
svn path=/trunk/; revision=872
Diffstat (limited to 'etrn.c')
-rw-r--r-- | etrn.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -45,8 +45,7 @@ static int etrn_getrange(FILE *sockfp, struct query *ctl, int*countp, int*newp) *countp = *newp = -1; /* make sure we don't enter the fetch loop */ /* ship the actual poll and get the response */ - gethostbyname(buf, sizeof(buf)); - gen_send(sockfp, "ETRN %s", buf); + gen_send(sockfp, "ETRN %s", fetchmailhost); if (ok = gen_recv(sockfp, buf, sizeof(buf))) return(ok); |