diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-11-06 21:55:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-11-06 21:55:19 +0000 |
commit | 6a75e16b6942cb3be87298fd9ca0c7d65d81f952 (patch) | |
tree | 3bceb1ca26a94beff0ec40edca7034beff408560 /conf.c | |
parent | dfff00af0a435d1a1646051f712240295997efb6 (diff) | |
download | fetchmail-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.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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); |