aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
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 */