diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 01:55:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 01:55:39 +0000 |
commit | 2e9a6dae88d25e8068ab855a86e1ac46f8bdab00 (patch) | |
tree | 569a4a7055166e112d0f6c2ee50cba2ec19eefa1 /imap.c | |
parent | 32e5987510b23d25f2227feb90869eb55ba93753 (diff) | |
download | fetchmail-2e9a6dae88d25e8068ab855a86e1ac46f8bdab00.tar.gz fetchmail-2e9a6dae88d25e8068ab855a86e1ac46f8bdab00.tar.bz2 fetchmail-2e9a6dae88d25e8068ab855a86e1ac46f8bdab00.zip |
Eliminate some unnecessary headers.
svn path=/trunk/; revision=129
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 16 |
1 files changed, 3 insertions, 13 deletions
@@ -12,28 +12,17 @@ ***********************************************************************/ #include <config.h> -#include <varargs.h> - #include <stdio.h> -#if defined(STDC_HEADERS) -#include <string.h> -#endif -#if defined(HAVE_UNISTD_H) -#include <unistd.h> -#endif -#include <errno.h> - #include "socket.h" #include "fetchmail.h" -static int count, first; - /********************************************************************* Method declarations for IMAP *********************************************************************/ +static int count, first; static int exists, unseen, recent; int imap_ok (argbuf,socket) @@ -176,7 +165,7 @@ int number; static struct method imap = { "IMAP", /* Internet Message Access Protocol */ - 143, /* standard IMAP3bis/IMAP4 port */ + 143, /* standard IMAP2bis/IMAP4 port */ 1, /* this is a tagged protocol */ 0, /* no message delimiter */ imap_ok, /* parse command response */ @@ -196,3 +185,4 @@ struct hostrec *queryctl; return(do_protocol(queryctl, &imap)); } + |