diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 14:29:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 14:29:37 +0000 |
commit | 313a954360f1659a3a27e1b02c8de7d2aaf99e15 (patch) | |
tree | ed4ec54503517e0b5939a6b08b25c61d7674bedc /etrn.c | |
parent | 8a8b194fae862aa28acc0fd38962423a98e44ef0 (diff) | |
download | fetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.tar.gz fetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.tar.bz2 fetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.zip |
Enable conditioning out of POP3, IMAP, ETRN.
svn path=/trunk/; revision=1477
Diffstat (limited to 'etrn.c')
-rw-r--r-- | etrn.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,6 +5,7 @@ */ #include "config.h" +#ifdef ETRN_ENABLE #include <stdio.h> #include <stdlib.h> #include <assert.h> @@ -158,5 +159,6 @@ int doETRN (struct query *ctl) status = PS_SUCCESS; return(status); } +#endif /* ETRN_ENABLE */ /* etrn.c ends here */ |