diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-14 19:28:01 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-14 19:28:01 +0000 |
commit | 8fd5a218113c39471797e537541bfc6227a37885 (patch) | |
tree | ec2d194a628982444723a72c00507728e468e242 /pop3.c | |
parent | 6e5d497bfda191ecb53cb05cba282b3c70931f5b (diff) | |
download | fetchmail-8fd5a218113c39471797e537541bfc6227a37885.tar.gz fetchmail-8fd5a218113c39471797e537541bfc6227a37885.tar.bz2 fetchmail-8fd5a218113c39471797e537541bfc6227a37885.zip |
Works with Microsoft Exchange.
svn path=/trunk/; revision=1337
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -430,6 +430,7 @@ static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp) if ((ok = pop3_ok(sock, buf)) != 0) return(ok); +#ifdef __UNUSED__ /* * Look for "nnn octets" -- there may or may not be preceding cruft. * It's OK to punt and pass back -1 as a failure indication here, as @@ -443,6 +444,9 @@ static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp) continue; *lenp = atoi(++cp); } +#endif /* __UNUSED__ */ + + *lenp = -1; /* POP3 is delimited, we don't care about lengths */ return(0); } |