aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-11 04:28:16 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-11 04:28:16 +0000
commit5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0 (patch)
tree657366d4a2494cb92c1e1dfd0cbc36e2fa893abb /pop2.c
parent566cab9427e5d6ce8bdff82d911ec76662ca7927 (diff)
downloadfetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.tar.gz
fetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.tar.bz2
fetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.zip
Normal build is now with POP2 disabled and optimization on.
svn path=/trunk/; revision=1080
Diffstat (limited to 'pop2.c')
-rw-r--r--pop2.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pop2.c b/pop2.c
index 51ddd295..d9e9990e 100644
--- a/pop2.c
+++ b/pop2.c
@@ -1,5 +1,5 @@
/*
- * pop2.c -- POP@ protocol methods
+ * pop2.c -- POP2 protocol methods
*
* Copyright 1996 by Eric S. Raymond
* All rights reserved.
@@ -7,6 +7,7 @@
*/
#include <config.h>
+#ifdef POP2_ENABLE
#include <stdio.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
@@ -137,5 +138,6 @@ int doPOP2 (struct query *ctl)
peek_capable = FALSE;
return(do_protocol(ctl, &pop2));
}
+#endif /* POP2_ENABLE */
/* pop2.c ends here */