aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-18 10:11:23 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-18 10:11:23 +0000
commit647234d78a9f9788f86d5f44a281f38b8f8c8571 (patch)
treeab2a5d2d9f06ed92ef472770db7ee78719ec5b9a /rcfile_y.y
parent4d3566569796182a2540fc13a3e7d1be3498650c (diff)
downloadfetchmail-647234d78a9f9788f86d5f44a281f38b8f8c8571.tar.gz
fetchmail-647234d78a9f9788f86d5f44a281f38b8f8c8571.tar.bz2
fetchmail-647234d78a9f9788f86d5f44a281f38b8f8c8571.zip
Make tracepolls a server option, as documented. Fixes Debian bug #156094.
svn path=/trunk/; revision=4121
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index e11a3687..8ce862dc 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -155,7 +155,7 @@ serv_option : AKA alias_list
#ifdef KERBEROS_V5
current.server.authenticate = A_KERBEROS_V5;
#else
- current.server.authenticate = A_KERBEROS_V4;
+ current.server.authenticate = A_KERBEROS_V4;
#endif /* KERBEROS_V5 */
#ifdef INET6_ENABLE
current.server.service = KPOP_PORT;
@@ -218,7 +218,7 @@ serv_option : AKA alias_list
void *request;
int requestlen;
- if (net_security_strtorequest($2, &request, &requestlen))
+ if (net_security_strtorequest($2, &request, &requestlen))
yyerror(GT_("invalid security request"));
else {
current.server.netsec = xstrdup($2);
@@ -247,8 +247,8 @@ serv_option : AKA alias_list
| DNS {current.server.dns = FLAG_TRUE;}
| NO DNS {current.server.dns = FLAG_FALSE;}
| NO ENVELOPE {current.server.envelope = STRING_DISABLED;}
- | TRACEPOLLS {current.tracepolls = FLAG_TRUE;}
- | NO TRACEPOLLS {current.tracepolls = FLAG_FALSE;}
+ | TRACEPOLLS {current.server.tracepolls = FLAG_TRUE;}
+ | NO TRACEPOLLS {current.server.tracepolls = FLAG_FALSE;}
;
userspecs : user1opts {record_current(); user_reset();}