diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-12-17 21:36:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-12-17 21:36:09 +0000 |
commit | 89ca89707bea7d8fd6e80a55a12e2be6a9762c49 (patch) | |
tree | be13447c08ea9b5795fcd251cfb2a91f41ff4b56 /imap.c | |
parent | 9d2e7f97454cd759c4c70a554c918caccc0b34a9 (diff) | |
download | fetchmail-89ca89707bea7d8fd6e80a55a12e2be6a9762c49.tar.gz fetchmail-89ca89707bea7d8fd6e80a55a12e2be6a9762c49.tar.bz2 fetchmail-89ca89707bea7d8fd6e80a55a12e2be6a9762c49.zip |
Remove some inclusions no longer needed.
svn path=/trunk/; revision=653
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,7 +13,6 @@ #if defined(STDC_HEADERS) #include <stdlib.h> #endif -#include "socket.h" #include "fetchmail.h" static int count, seen, recent, unseen, imap4; @@ -164,7 +163,7 @@ static int imap_fetch(FILE *sockfp, int number, int *lenp) * If we're using IMAP4, we can fetch the message without setting its * seen flag. This is good! It means that if the protocol exchange * craps out during the message, it will still be marked `unseen' on - * the server + * the server. */ if (imap4) gen_send(sockfp, "FETCH %d RFC822.PEEK", number); |