aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-11-06 21:55:19 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-11-06 21:55:19 +0000
commit6a75e16b6942cb3be87298fd9ca0c7d65d81f952 (patch)
tree3bceb1ca26a94beff0ec40edca7034beff408560 /conf.c
parentdfff00af0a435d1a1646051f712240295997efb6 (diff)
downloadfetchmail-6a75e16b6942cb3be87298fd9ca0c7d65d81f952.tar.gz
fetchmail-6a75e16b6942cb3be87298fd9ca0c7d65d81f952.tar.bz2
fetchmail-6a75e16b6942cb3be87298fd9ca0c7d65d81f952.zip
Ready to send this to Mike.
svn path=/trunk/; revision=2649
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/conf.c b/conf.c
index 499e141d..1856b502 100644
--- a/conf.c
+++ b/conf.c
@@ -172,12 +172,12 @@ void dump_config(struct runctl *runp, struct query *querylist)
#ifdef SSL_ENABLE
printf("'ssl',");
#endif /* SSL_ENABLE */
-#if OPIE
+#if OPIE_ENABLE
printf("'opie',");
-#endif /* OPIE */
-#if INET6
+#endif /* OPIE_ENABLE */
+#if INET6_ENABLE
printf("'inet6',");
-#endif /* INET6 */
+#endif /* INET6_ENABLE */
#if NET_SECURITY
printf("'netsec',");
#endif /* NET_SECURITY */
@@ -237,7 +237,7 @@ void dump_config(struct runctl *runp, struct query *querylist)
using_kpop =
(ctl->server.protocol == P_POP3 &&
-#if !INET6
+#if !INET6_ENABLE
ctl->server.port == KPOP_PORT &&
#else
0 == strcmp( ctl->server.service, KPOP_PORT ) &&
@@ -249,7 +249,7 @@ void dump_config(struct runctl *runp, struct query *querylist)
stringdump("via", ctl->server.via);
stringdump("protocol",
using_kpop ? "KPOP" : showproto(ctl->server.protocol));
-#if !INET6
+#if !INET6_ENABLE
numdump("port", ctl->server.port);
#else
stringdump("service", ctl->server.service);
@@ -336,9 +336,9 @@ void dump_config(struct runctl *runp, struct query *querylist)
else
fputs("'lmtp':FALSE,\n", stdout);
-#ifdef INET6
+#ifdef INET6_ENABLE
stringdump("netsec", ctl->server.netsec);
-#endif /* INET6 */
+#endif /* INET6_ENABLE */
stringdump("preconnect", ctl->preconnect);
stringdump("postconnect", ctl->postconnect);
numdump("limit", ctl->limit);