]> Pileus Git - ~andy/fetchmail/blobdiff - pop2.c
Refer to FETCHMAIL_SSL_SECLEVEL.
[~andy/fetchmail] / pop2.c
diff --git a/pop2.c b/pop2.c
index 6d3980f9af658f42432cb7132dc6d6a0fe3c258d..5a5a1bd1cfcec35f4c68028ca19b89cc9bfa08e9 100644 (file)
--- a/pop2.c
+++ b/pop2.c
@@ -8,14 +8,10 @@
 #include  "config.h"
 
 #ifdef POP2_ENABLE
+#include  "fetchmail.h"
 #include  <stdio.h>
-#if defined(STDC_HEADERS)
 #include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
 #include <string.h>
-#endif
-#include  "fetchmail.h"
 #include  "socket.h"
 #include  "i18n.h"
 
@@ -68,7 +64,7 @@ static int pop2_getauth(int sock, struct query *ctl, char *buf)
        return PS_SOCKET;
     }
 
-    if (ctl->server.authentication != A_ANY && ctl->server.authentication != A_PASSWORD)
+    if (ctl->server.authenticate != A_ANY && ctl->server.authenticate != A_PASSWORD)
     {
        report(stderr, GT_("POP2 only supports password authentication. Giving up.\n"));
        return PS_AUTHFAIL;
@@ -84,7 +80,7 @@ static int pop2_getauth(int sock, struct query *ctl, char *buf)
 }
 
 static int pop2_getrange(int sock, struct query *ctl, const char *folder, 
-                        int *countp, int *newp, int *bytes)
+                        int *countp, int *newp, unsigned long long *bytes)
 /* get range of messages to be fetched */
 {
     (void)ctl;