X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/220d91b834f7f7252b9953460422151b86b3520c..cf950e6bbdeec3f6aab3e119f26f9cd5d962ac2e:/lib-src/pop.c diff --git a/lib-src/pop.c b/lib-src/pop.c index 9eabbd2041..a94e06fbd8 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -1,6 +1,7 @@ /* pop.c: client routines for talking to a POP3-protocol post-office server - Copyright (C) 1991, 1993, 1996, 1997, 1999, 2001, 2002, 2003, 2004, - 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + +Copyright (C) 1991, 1993, 1996-1997, 1999, 2001-2011 + Free Software Foundation, Inc. Author: Jonathan Kamens @@ -64,13 +65,8 @@ extern struct servent *hes_getservbyname (/* char *, char * */); #include #include #include -#ifdef STDC_HEADERS #include -#define index strchr -#endif -#ifdef HAVE_UNISTD_H #include -#endif #ifdef KERBEROS # ifdef HAVE_KRB5_H @@ -92,6 +88,8 @@ extern struct servent *hes_getservbyname (/* char *, char * */); # endif #endif /* KERBEROS */ +#include + #ifdef KERBEROS #ifndef KERBEROS5 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *, @@ -123,19 +121,15 @@ static char *find_crlf (char *, int); to be bigger than the original value of 80 */ #define POP_PORT 110 -#define KPOP_PORT 1109 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ #ifdef KERBEROS +#define KPOP_PORT 1109 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */ #endif char pop_error[ERROR_MAX]; int pop_debug = 0; -#ifndef min -#define min(a,b) (((a) < (b)) ? (a) : (b)) -#endif - /* * Function: pop_open (char *host, char *username, char *password, * int flags) @@ -1626,6 +1620,3 @@ find_crlf (char *in_string, int len) } #endif /* MAIL_USE_POP */ - -/* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d - (do not change this comment) */