aboutsummaryrefslogtreecommitdiffstats
path: root/rpa.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-30 21:26:42 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-30 21:26:42 +0000
commit12543c76ce635e1efa5a6585f47ebd85b5c7db90 (patch)
tree421dba6fad43471c42b3e7eb017097023f500726 /rpa.c
parent06e870380328afef42cb857f7e421466df12aeaa (diff)
downloadfetchmail-12543c76ce635e1efa5a6585f47ebd85b5c7db90.tar.gz
fetchmail-12543c76ce635e1efa5a6585f47ebd85b5c7db90.tar.bz2
fetchmail-12543c76ce635e1efa5a6585f47ebd85b5c7db90.zip
Integrated RPA support.
svn path=/trunk/; revision=1444
Diffstat (limited to 'rpa.c')
-rw-r--r--rpa.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/rpa.c b/rpa.c
index e417ad58..99e37f53 100644
--- a/rpa.c
+++ b/rpa.c
@@ -8,6 +8,9 @@
description: RPA authorisation code for POP3 client
***********************************************************************/
+#include "config.h"
+
+#ifdef RPA_ENABLE
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
@@ -16,8 +19,6 @@
#include "fetchmail.h"
#include "md5.h"
-
-
#ifdef TESTMODE
extern unsigned char line1[];
extern unsigned char line2[];
@@ -880,3 +881,6 @@ unsigned char* out;
fprintf(stderr,"\n");
}
}
+#endif /* RPA_ENABLE */
+
+/* rpa.c ends here */