diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-08 17:53:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-08 17:53:08 +0000 |
commit | 8189282e30abc8e82edafa0031b236ff654f08d9 (patch) | |
tree | a597fed8899d30dc80db976cf7a1d78650091b71 /rcfile_y.y | |
parent | cca409b5ce0ad4b08fa36e80feb77aa8727c08a1 (diff) | |
download | fetchmail-8189282e30abc8e82edafa0031b236ff654f08d9.tar.gz fetchmail-8189282e30abc8e82edafa0031b236ff654f08d9.tar.bz2 fetchmail-8189282e30abc8e82edafa0031b236ff654f08d9.zip |
= now optional.
svn path=/trunk/; revision=1491
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -77,9 +77,11 @@ statement_list : statement | statement_list statement ; -/* future global options should also have the form SET <name> <value> */ -statement : SET LOGFILE MAP STRING {logfile = xstrdup($4);} - | SET DAEMON NUMBER {poll_interval = $3;} +optmap : MAP | /* EMPTY */; + +/* future global options should also have the form SET <name> optmap <value> */ +statement : SET LOGFILE optmap STRING {logfile = xstrdup($4);} + | SET DAEMON optmap NUMBER {poll_interval = $4;} | SET SYSLOG {use_syslog = TRUE;} /* |