diff options
-rw-r--r-- | driver.c | 2 | ||||
-rw-r--r-- | imap.c | 3 | ||||
-rw-r--r-- | pop2.c | 1 | ||||
-rw-r--r-- | pop3.c | 1 | ||||
-rw-r--r-- | smtp.c | 2 |
5 files changed, 2 insertions, 7 deletions
@@ -37,7 +37,7 @@ #ifdef KERBEROS_V4 #include <krb.h> #include <des.h> -#include <netinet/in.h> /* must be included before "socket.h".*/ +#include <netinet/in.h> #include <netdb.h> #endif /* KERBEROS_V4 */ #include "socket.h" @@ -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); @@ -11,7 +11,6 @@ #if defined(STDC_HEADERS) #include <stdlib.h> #endif -#include "socket.h" #include "fetchmail.h" static int pound_arg, equal_arg; @@ -16,7 +16,6 @@ #include <stdlib.h> #endif -#include "socket.h" #include "fetchmail.h" #define PROTOCOL_ERROR {error(0, 0, "protocol error"); return(PS_ERROR);} @@ -11,10 +11,8 @@ #include <stdio.h> #include <config.h> -#include <sys/types.h> #include <unistd.h> #include <string.h> -#include "socket.h" #include "fetchmail.h" #include "smtp.h" |